About 2,550,000 results
Open links in new tab
  1. What does \\\\?\\ mean when prepended to a file path

    For file I/O, the "\\?\" prefix to a path string tells the Windows APIs to disable all string parsing and to send the string that follows it straight to the file system.

  2. coding style - Python: variable naming convention - file, path ...

    Apr 19, 2018 · Python: variable naming convention - file, path, filepath, file_path Asked 7 years, 8 months ago Modified 3 years, 3 months ago Viewed 12k times

  3. What does two asterisks together in file path mean?

    Feb 27, 2022 · Basically it means that all files with extension config would be processed from the all subdirectories of $(Services_Jobs_Drop_Path) path. MSDN, Using Wildcards to Specify …

  4. How do I get the full path of the current file's directory?

    2814 The special variable __file__ contains the path to the current file. From that we can get the directory using either pathlib or the os.path module. Python 3 For the directory of the script …

  5. What is the naming standard for path components?

    I keep getting myself in knots when I am manipulating paths and file names because I don’t follow a naming standard for path components. Consider the following toy problem (Windows …

  6. what does the __file__ variable mean/do? - Stack Overflow

    Feb 14, 2012 · Per the documentation: __file__ is the pathname of the file from which the module was loaded, if it was loaded from a file. The __file__ attribute is not present for C modules that …

  7. Reading a file using a relative path in a Python project

    Reading a file using a relative path in a Python project Asked 9 years, 1 month ago Modified 2 years, 1 month ago Viewed 283k times

  8. Difference between forward slash (/) and backslash (\) in file path

    Jan 31, 2024 · I was wondering about the difference between \\ and / in file paths. I have noticed that sometimes a path contains /and sometimes it is with \\. It would be great if anyone can …

  9. Overcoming maximum file path length restrictions in Windows

    Feb 9, 2011 · MAX_PATH is 260 characters. The NTFS file system actually supports file paths of up to 32,767 characters. And you can still use 32,767 character long path names by accessing …

  10. string - How do I get the filename without the extension from a …

    Why do you resolve() the path? Is it really possible to get a path to a file and not have the filename be a part of the path without that? This means that if you're give a path to symlink, …