You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using gaufrette, before downloading a file, the path is gauffrette://folder/file.jpg.
Running is_file on this path is returning true and then the file could be downloaded with this path too.
When using flysystem, $fs->readStream($path);, the path to use is basically the name of the file.
But this path is not compatible with the method is_file, which return false.
Is there a way to get a is_file compatible path without downloading the file and saving it somewhere ?
The text was updated successfully, but these errors were encountered:
Feature Request
Scenario / Use-case
HI @frankdejonge
Related to dustin10/VichUploaderBundle#1217 (comment)
When using
gaufrette
, before downloading a file, the path isgauffrette://folder/file.jpg
.Running
is_file
on this path is returning true and then the file could be downloaded with this path too.When using flysystem,
$fs->readStream($path);
, the path to use is basically the name of the file.But this path is not compatible with the method
is_file
, which returnfalse
.Is there a way to get a
is_file
compatible path without downloading the file and saving it somewhere ?The text was updated successfully, but these errors were encountered: