Standards: filesystem: Difference between revisions

From wikinotes
 
Line 1: Line 1:
= Filenames =
= Valid Filenames =
<blockquote>
<blockquote>
== Documentation ==
== Documentation ==

Latest revision as of 21:19, 19 September 2021

Valid 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 = ['..', '.']