Expand a path into its long form. On Windows this expands any ~ in the paths. On other platforms, it is a null operation.
(path)
| 59 | |
| 60 | |
| 61 | def get_long_path_name(path): |
| 62 | """Expand a path into its long form. |
| 63 | |
| 64 | On Windows this expands any ~ in the paths. On other platforms, it is |
| 65 | a null operation. |
| 66 | """ |
| 67 | return _get_long_path_name(path) |
| 68 | |
| 69 | |
| 70 | def unquote_filename(name, win32=(sys.platform=='win32')): |
nothing calls this directly
no test coverage detected