a computer program that provides a user interface to manage files and folders.
Questions tagged [file-browser]
210 questions
0
votes
2 answers
How can I make a file to disappear once if it is deleted in android SD card?
/*Files will be clicked here*/
@Override
protected void onListItemClick(ListView l,View v, final int position, long id){
filePosition=new File(path1.get(position));
System.out.println("File position:"+filePosition);
…

Achiever
- 1,626
- 10
- 30
- 54
0
votes
1 answer
Where is the file copy dialog in Visual Studio 2012?
I used the file copy dialog in VS 2010 to selectively push web files to a production server. The only tool I can find in VS 2012 that is similar is the Web Publish Activity dialog. It forces you to fully synchronize your entire site. That is not…

Corgalore
- 2,486
- 2
- 23
- 32
0
votes
2 answers
Open a file browser in a specific folder with Python
I'm a french guy, so excuse me if my English is not very good.
Here is my problem : I'm using python to make a script that works with Blender, and I need to import an .obj file. I already have the importer, but I enter the entire filepath.
It's…

Ero
- 1
- 1
- 1
0
votes
1 answer
How can I reuse the file chooser of ckeditor grails plugin?
I'm using the ckeditor plugin for grails (:ckeditor:3.6.2.2) and I'd like to reuse the File Chooser used to select images inside the rich text editor. I'd like to use it in a form for selecting images.
The plugin documentation makes me assume this…

monacotoni
- 606
- 5
- 18
0
votes
1 answer
FileBrowser which shows files from different directories using python QtGUI
I have full path of some pdf files which are in different directories and I want to show those files in one Window from where user can click and open them by and document viewer.
Since I'm new to python and QtGUI, I am unable to figure out how to do…

vaibhav1312
- 863
- 4
- 13
- 31
0
votes
2 answers
Browse and upload file
I have a ASP.NET (.NET Framework 3.5) Application. Now, I have to place a Button on a aspx-Page with the fallowing functionality on click:
Ask the user for a file with Extension xls (OpenFileDialog)
Upload the selected file to a specific folder on…

BennoDual
- 5,865
- 15
- 67
- 153
0
votes
2 answers
Android FileType viewer
Alright, so I have an app that has a custom folder:
I want to open the following types:
protected String[] acceptableTypes = {"jpg", "gif", "png", "bmp", "pdf", "txt"};
I can open the images or at least the jgps for sure with the following code…

Vnge
- 1,295
- 25
- 49
0
votes
1 answer
Browse Azure website files?
Is FTP/SC the only means to browse and edit your Azure website?
Isn't there an online file explorer to be able to apply minor changes such as modifying the web.config file etc.

Shimmy Weitzhandler
- 101,809
- 122
- 424
- 632
0
votes
1 answer
Using content provider and file file search simultaneously
I'm writing a music player that purely relies on the android content providers (MediaStore) at the moment. The problem is that the content provider doesn't always pick up all the music on the device, especially when people have strange…

Tim Malseed
- 6,003
- 6
- 48
- 66
0
votes
1 answer
XNA creating an in-game file browser for music files
so I'm currently working on a music based game. Much like audio surf, the user selects their audio file and then the game continues to process the level according to the music. Currently I'm using the FileDialog to select file, but this only works…

Sun
- 2,658
- 6
- 28
- 33
0
votes
1 answer
CKEditor external file browser
I'm trying to return file url from external file browser to CKEditor but I'm receiving error which is:
[09:02:18.038] TypeError: A._.filebrowserSe is undefined @ http://www.xxx.pl/yyy/js/ckeditor/ckeditor.js:56
I'm using this…

Marek Bar
- 873
- 3
- 16
- 31
0
votes
1 answer
KCFinder web file manager with TinyMCE, Php script not working
I'm using KCFinder with TinyMCE in my MVC3 application. My configuration looks like as follows
tinyMCE.init({
file_browser_callback: 'openKCFinder',
...........
...........
});
function openKCFinder(field_name, url, type, win) {
…

Unknown Coder
- 1,510
- 2
- 28
- 56
0
votes
2 answers
How to browse a text file & add items to listbox c#/.net
I want to add items to a "listbox" from a text file by browsing the file that contains text like this:
"one"
"two"
"three"
"many more"
Please tell me how to browse a text file & add items to a listbox.

user1563019
- 69
- 1
- 2
- 8
0
votes
2 answers
Howto automatically open FITS images and tables with different apps from the Mac OS X Finder?
FITS files can contain several images (or more generally n-dimensional arrays) and tables.
Is there a way to automatically open images e.g. with the ds9 application and tables with the TOPCAT application when I double-click the FITS file in the Mac…

Christoph
- 2,790
- 2
- 18
- 23