Standards: filesystem: Difference between revisions

From wikinotes
Line 1: Line 1:
= filenames =
= Filenames =
<blockquote>
<blockquote>
== Documentation ==
{| class="wikitable"
|-
| ntfs || https://msdn.microsoft.com/en-us/library/aa365247.aspx
|-
| posix || http://pubs.opengroup.org/onlinepubs/9699919799/nframe.html
|-
|}
== ntfs ==
== ntfs ==
<source lang="python">
<source lang="python">

Revision as of 21:18, 19 September 2021

Filenames

Documentation

ntfs https://msdn.microsoft.com/en-us/library/aa365247.aspx
posix http://pubs.opengroup.org/onlinepubs/9699919799/nframe.html

ntfs

char_range        = '^[a-zA-Z0-9{}]+'.format(re.escape('_ .()'))
invalid_filenames = (
                     ['CON', 'PRN', 'AUX', 'NUL', 'CLOCK', '..', '.']
                   + ['COM{}'.format(i) for i in range(1, 10)]
                   + ['LPT{}'.format(i) for i in range(1, 10)]
)

posix

char_range        = '^[a-zA-Z0-9{}]+'.format(re.escape('_ .()'))
invalid_filenames = ['..', '.']