Questions tagged [file-manager]

file-manager is a GUI oriented application or service with the purpose to manage files in a operating system.

is a GUI oriented application or service with the purpose to manage files in a operating system. Use this tag, and use this tag only, if you have a question that explicitly targets a specific File Manager or a specific File Manager API.

455 questions
94
votes
1 answer

What's a quick way to test to see a file exists?

I want to quickly check to see if a file exists in my iPhone app's Documents directory (or any path for that matter). I can enumerate through the directory's files, or I can try to open a specific file. What's the fastest way? I just need to know…
mahboudz
  • 39,196
  • 16
  • 97
  • 124
58
votes
11 answers

Saving image and then loading it in Swift (iOS)

I am saving an image using saveImage. func saveImage (image: UIImage, path: String ) -> Bool{ let pngImageData = UIImagePNGRepresentation(image) //let jpgImageData = UIImageJPEGRepresentation(image, 1.0) // if you want to save as JPEG …
tesgoe
  • 1,012
  • 3
  • 10
  • 19
52
votes
7 answers

How to find files and skip directories in os.listdir

I use os.listdir and it works fine, but I get sub-directories in the list also, which is not what I want: I need only files. What function do I need to use for that? I looked also at os.walk and it seems to be what I want, but I'm not sure of how it…
Bartee
  • 623
  • 1
  • 5
  • 4
19
votes
2 answers

Best free file manager for ASP.Net

i am looking for a free file manager for my project in ASP.Net, so can any show me? Edit: A file manager or a image manager for user to use to upload/select/create folder/delete files...
Hieu Nguyen Trung
  • 1,624
  • 5
  • 21
  • 32
18
votes
2 answers

Does iOS clean cache directory automatically?

I'm saving media files at this path and i wonder does iOS auto clean the cache or i have to do it manually? let documentsUrl = self.fileManager.urls(for: .cachesDirectory, in: .userDomainMask).first! Searched and there is no particular answer for…
TomSawyer
  • 3,711
  • 6
  • 44
  • 79
13
votes
2 answers

Uncaught TypeError: $(...).size is not a function

I'm using a plugin to insert an image from the file manager, however I'm getting an error: imagebrowser.php?func=addImage&w=160&h=120:77 Uncaught TypeError: $(...).size is not a function at addImage…
David Buik
  • 522
  • 1
  • 8
  • 31
13
votes
2 answers

Choose folder on Android device

I would like to let user pick directory and save downloaded file (my app downloads file). I know that some tools (for example, ES File Explorer) provide such intent-filters. see http://www.estrongs.com/en/support/developers.html. I start activity…
Eugene Nacu
  • 1,613
  • 2
  • 14
  • 22
13
votes
3 answers

Any Easy to extend Web-based File Manager for node.js?

Want to find one and modify that to read, write file on mongoDB gridfs store
Eric Fong
  • 815
  • 1
  • 8
  • 17
12
votes
1 answer

How to expand ms-explorer to automatically handle "connected files" / sidecar files / xmp belonging to jpg?

If you locally save a HTML page using Firefox or MS Internet Explorer you will get a HTML file and a sidecar folder containing images that belongs to the page. If you move the HTML file using Windows Explorer the related sidecar folder is moved,…
k3b
  • 14,517
  • 7
  • 53
  • 85
10
votes
1 answer

How to send multiple images those are present in folder to the google drive in android programmatically?

I want to send multiple images those are present in my internal storage and when i selects that folder i want upload that folder into google drive. i have tried this google drive api for android…
Hanuman
  • 958
  • 13
  • 35
9
votes
3 answers

Android File Manager Library

I am admittedly not experienced in developing for android. I am looking for some API that lets me browse the users files, without installing a separate app via intents. Right now I have found the OI File Manager, but that uses intents to get it's…
Richard J. Ross III
  • 55,009
  • 24
  • 135
  • 201
9
votes
1 answer

How to save a UIImage to documents directory?

I'm trying to save both a recorded video's file path, and a thumbnail from the video to the documents directory. Then, set those two values to an object using the file paths so I can use the object to populate a collection view. With the code I have…
KingTim
  • 1,281
  • 4
  • 21
  • 29
9
votes
1 answer

How to use java.nio.file package in android?

I want to create a file manager application for Android using java.nio.file API which is the part of JDK7. I think this (java.noi.file)API contains easy solutions to design file manager application where JDK6(IO) and apache commons IO API does not…
Paramananda
  • 513
  • 1
  • 8
  • 12
9
votes
1 answer

tinymce 4: how to create your own file manager?

I am trying to make my own file browser so that I can select the image from my file manage and send it tinymce's image link's field, but I can't find any further information anywhere else on how I can achieve this. This is the code to open up an new…
Run
  • 54,938
  • 169
  • 450
  • 748
9
votes
2 answers

Determine Mime type of a uri in android returned by an intent?

First some context of what I am trying to achieve - I am developing an Image Sharing application for which I need the user to pick an image from the filesystem . For this , I am using this code - Intent photoPickerIntent = new…
Vinayak Bhavnani
  • 618
  • 1
  • 4
  • 10
1
2 3
30 31