Known Issues¶
S3 Sandbox type¶
Long filenames and paths in Windows¶
Long paths and filenames (paths over 260 characters) on Windows are only supported when using Sandboxing, and the sandbox path is specified as a UNC path. For example, to sandbox to D:\data
when using long paths or filenames, create the following sandbox:
>>> api.server.setSandboxMapping('', {
"data": r'\\?\d:\data'
})
Similarly, when using the --sandbox-dir
option, the same sandbox can be specified as follows:
C:\> jetstream server --sandbox-dir "\\?\d:\data"