Other Resources:
Parsing directory name and size from Windows "dir" command
How to write a regular expression to parse directory name and total file size from the output of Windows "dir" command?
Here is an example output of the "dir" command:
✍: FYIcenter.com
Here is a regular expression to parse file entries from output of the "dir" command on Windows systems: Note that:
Directory of ([^\r\n]+) - capture the directory name File\(s\)\s+([^\r\n]+) - capture the total file size
2013-02-01, 0👍, 0💬
Popular Posts:
All credit card numbers issued by JCB have 3 sets of numbers: JCB cards start with 2131 have 15 digi...
A free online regular expression test tool that allows to try you regular expression pattern and see...
All credit card numbers issued by American Express must start with 34 or 37 and have 15 digits. For ...
How to write a regular expression to parse key-value entries from Windows .INI files? Here is an exa...
A free online regular expression test tool that allows to try you regular expression pattern and see...