Open
Description
I've run across an issue, and to be honest I'm not quite sure which library it belongs in.
It starts with the line
df.to_parquet(
path=path,
partition_cols=partition_cols,
storage_options=fs.storage_options
)
which takes me through the pandas
library until reaching this function in pyarrow
which internally calls the helper function _mkdir_if_not_exists()
The problem is that for FTPFileSystem
, this helper function does not actually create the directory because of this line
The simplest solution would be to override this _is_filestore()
method in FTPFileSystem
to return True
.
Metadata
Metadata
Assignees
Labels
No labels