You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
428 B
13 lines
428 B
6 months ago
|
# PathExtractTest
|
||
|
|
||
|
Extracts some information from a directory based on its structure.
|
||
|
|
||
|
The basic gist is:
|
||
|
|
||
|
- There is a magic directory, called ".run".
|
||
|
- Things go as "something/.run" or "something/.run/special/path".
|
||
|
- If we send "something/.run", we need to get a pair with path "something" and
|
||
|
the name "default";
|
||
|
- If we send "something/.run/special/path", we need to get a pair with path
|
||
|
"something and the name "path.
|