FileRun

Results 11 comments of FileRun

It's not a big problem. Most probably the session data was forcefully cleaned. F12 -> Application -> Cookies -> remove the FileRun related cookies and login again.

Hi! Interesting find! Will fix, thank you!

Fixed by updating screenfull to v4: https://github.com/sindresorhus/screenfull.js/blob/gh-pages/dist/screenfull.min.js

In the case where there are only two rows, it looks ugly if the last row is not only of the same length but also of different height. It would...

Nevermind. After having a look at the code I realized I can set a default context: ` $default = stream_context_set_default([ 'smb' => [ 'username' => '******', 'password' => '******' ]...

Well, disappointed because the wrapper doesn't cover some basic functions, such as "is_dir" or "file_exists", so it's too limited.

Use this to get the proper path: https://github.com/hiddentao/cordova-plugin-filepath Then get the filename out of the path: filePath.split('/').pop()

Solution: ``` fileChooser.open(function(contentURI) { window.FilePath.resolveNativePath(contentURI, function(absolutePath) { window.resolveLocalFileSystemURL(absolutePath, function(fileEntry) { ``` There is a Cordova plugin for "resolveNativePath". Google it.