Questions tagged [file-browser]

a computer program that provides a user interface to manage files and folders.

210 questions
0
votes
1 answer

Folders inside File Repository not possible?

Maybe it sounds a bit like a stupid question but are there no folders inside the File Repository tool? It becomes pretty messy after a time for editors. Manually created folders (via file system) are not displayed. Best regards!
0
votes
3 answers

Getting file locations and file names in a folder

I have a root folder and a bunch of files and folders within. I want to generate a list of file names that are within that root folder (and sub folders), along with the location of each file. I need the file location because I want to display the…
john
  • 1,561
  • 3
  • 20
  • 44
0
votes
1 answer

MoSync Android : Browse File System

I am creating an app in MoSync for Android and iOS. I am using HTML5/JS/JQuery Mobile, and I need an example on how to browse a file in a MoSync App. I used simple: tag, which is rendering normal file browse of HTML. However,…
GKG4
  • 440
  • 1
  • 4
  • 16
0
votes
2 answers

File picking browser showing empty directories

Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("file/*"); startActivityForResult(intent,PICKFILE_RESULT_CODE); protected void onActivityResult(int requestCode, int resultCode, Intent data) { // TODO Auto-generated method…
0
votes
0 answers

Not able to see files while opening file browser using AndroidFileBrowser Library

I am trying to make a File browser for which I am taking help of this library. Now according their code I am trying to implement, it's opening the desired location in the cell, however I am only able to see directories not files. As instructed I…
Saty
  • 2,563
  • 3
  • 37
  • 88
0
votes
2 answers

Mimic/Create Minimalist File Browser in C#

I'm trying to make a program that stores files as *.txt based documents. I want to be able to click a button and pull up a list of currently stored files (Located in C:\ProgramData\ProgramName\Incidents) Above is an example of what I'm trying to…
Cistoran
  • 1,587
  • 15
  • 36
  • 54
0
votes
3 answers

NameError: name 'tkFileDialog' is not defined

I'm trying to use Tkinter and get the user to choose a certain file. My code looks like this (I'm just starting out with Tkinter) from Tkinter import * from tkFileDialog import * root = Tk() root.wm_title("Pages to…
evamvid
  • 831
  • 6
  • 18
  • 40
0
votes
1 answer

Basic Tiny MCE File Manager

I need a super-simple file manager (preferably in classic asp but not a deal breaker) that I can add to Tiny MCE v3. It doesn't need to upload, show images or other media, just documents such as .pdf, .doc, etc. I just need to allow the user to…
user2468538
0
votes
2 answers

Concat doesn't work properly in files in java

I have to do a project without the swing library.I have to browse over the files and was trying to do something like this: fichero = new File(fichero.getAbsolutePath().concat("\\" + str)); where str is the new Directory that you want to access…
0
votes
1 answer

Integrating filebrowser plugin and CKEditor 4.3 standard

I am struggling with this integration. Any help greatly appreciated. I want to have the file browser option only on the link tab of the image dialog. In addition, I want it to default to a specific folder. I've downloaded both filebrowser and popup…
royhink
  • 49
  • 1
  • 9
0
votes
1 answer

Symfony2 file manager

I am looking for Symfony2 bundle(s) which provide file manager functionality: create directories and sub-directories upload files and then in form for "file" field type elements I would need to choose from the files uploaded using file manager to…
werd
  • 648
  • 4
  • 13
  • 23
0
votes
1 answer

How to open a file chooser so I can choose a file and upload it?

I'm wroking on file upload on sencha project,I want to tap "Select file" button on sencha's panel to display a file choose dialog box,so I can tap in a folder to select file to upload.I at first used this method: function openFileSelector() { …
StarLeo
  • 3
  • 6
0
votes
1 answer

Use html hyperlinks to index file folders

I am trying to index the file folders on my local computer using a html file. I set hyperlinks to the folders, when click the link, the internet browser (firefox in my case) lists the files contained in the folder. However, is it possible to open…
shapeare
  • 4,133
  • 7
  • 28
  • 39
0
votes
1 answer

restrict AndroidFileBrowser to go up further than startdir

I want to use AndroidFileBrowser to create a simple Browser in my App. Is there a way to prevent users to go up further than the provided startDirectory I give the activity via Intent? How would I have to change the code in…
PdXY
  • 136
  • 1
  • 2
  • 12
0
votes
2 answers

How to resize a JFile Chooser

I am designing a file browser using Java Swing, and here is what I have so far: I have a JFileChooser in a panel, however it stays the same size when I reshape the window. However, I want to make it look like this: Is it possible to make the…
TheRyan722
  • 1,029
  • 13
  • 37