Skip to content

Commit

Permalink
Create README.md
Browse files Browse the repository at this point in the history
Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
  • Loading branch information
davrot authored Dec 2, 2023
1 parent 92571fc commit c6bbdfa
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions glob/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# glob -- Finding files in a directory

## Goal
We want to deal with many files in a directory. What is an easy way to get the filename in a directory?

Questions to [David Rotermund](mailto:davrot@uni-bremen.de)

## Creating test files

```python
from pathlib import Path

Path("Testfile_001.mat").touch()
Path("Testfile_002.mat").touch()
Path("Testfile_010.mat").touch()
Path("Testfile_003.mat").touch()
```

0 comments on commit c6bbdfa

Please sign in to comment.