The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
29 views

JS/Ajax based File Tree to connect with a simple Django App

I wish to expose some of the directories in read only format as file tree through a web interface on my server. I have a simple django application that can links users with some of the folders, and ...
2
votes
0answers
86 views

jQuery FileTree cannot read local shared folder?

I am trying to use jQuery FileTree to access a local shared folder. My code is below, which works absolutely fine if the folder has not been shared on the network. However, as soon as I share the ...
0
votes
0answers
7 views

Page check folder name and write link

I'm looking for a way to make a page that would check all of its sub-folders names, write them down and link to a html inside each of those folders: My folder architecture is like: "Root" folder ...
0
votes
0answers
77 views

Pass selected nodes file path to function to save file when clicked

I am a little new with jQuery and I am trying to implement a treeview using jQuery File Tree. I can populate everything from my hard drive into these nodes(directories & files). When I hover over ...
0
votes
1answer
58 views

php file/folder treeview for os disk and netwrok paths

I am trying to make Intranet application in centos/linux which lets users browse and select file placed anywhere on server or networks paths ..I just need to select file so I can get its full path ...
0
votes
0answers
63 views

JQuery FileTree perl connector not working

I am developing an intranet app, and I want users to select a file. For that I am using jqueryFileTree with jqueryFileTree.pl connector. The objective is to let users select their file (app ...
0
votes
1answer
120 views

Can't figure out how to configure jquery file tree

I just saw a file tree on http://www.abeautifulsite.net/blog/2008/03/jquery-file-tree/, and I don't know to configure it. I want to add the items and subitems manually but I don't get how to do this. ...
1
vote
0answers
32 views

Optimal solution for cache files folder structure

I am defining the criteria to create an optimal folder structure for cache files on the filesystem. The aim is to create the most performing file hierarchy from a filesystem perspective. Files cached ...
0
votes
0answers
143 views

Renaming & moving files based on their file path

I am trying to rename files based on the treepath it is in, then move the renamed files to a specific folder (based on its name). So, for example, I have a file in path L:\a\b\c\d\e\f\file.pdf I want ...
1
vote
3answers
57 views

Anybody know of an open-source C implementation of the Java walkFileTree FileVisitor interface for walking a directory / file tree structure?

Does anybody know of a C implementation of the java.nio.file.Files.walkFileTree FileVisitor interface for walking a directory / file tree structure? I have some existing Java code that uses the ...
0
votes
1answer
52 views

Checking whether a Directory Tree Contains File

Is there a function in Emacs to check whether a given existing file lies somewhere "under" a (root) directory, that is anywhere inside the tree structure of the root directory.
-2
votes
2answers
202 views

How to display a filesystem tree to user be able to click and select a path? [closed]

Mates, after having a hard time trying to implement a class to enumerate the how filesystem tree I give up triyng to make it work. I have a textbox with a filepath. I want the user to be able to ...
0
votes
3answers
66 views

get a list of files that are different between two filetrees

I'm comparing two very large filesystems (to do with a migration) and diff -qr was great but now since the users have been using the new location the files have changed. I there a way to use diff, ...
0
votes
1answer
87 views

Add file node to tree based on it's path

I have the struct: public struct BaseFile { public string FileName; public string Path; // this is not the full path. it is the fullPath of it's parent directory in other words. } and I ...
0
votes
0answers
58 views

Splitting folders to add to tree

Coming from my other question QTreeWidget for File Tree and Sub-folders i've ran into another problem. The Problem is that if we have lot of sub-folders for example: Folder1 | |--- Folder2 |--- ...
0
votes
1answer
483 views

QTreeWidget for File Tree and Sub-folders

So, what i'm using is a QTreeWidget to make a File-Tree. I can easily create the files, and folders. But the issue comes when we talk about sub-folders. For example: Folder1 Folder1/SubFolder1 ...
3
votes
1answer
68 views

Monticello - Save to Squeaksource and Filetree in one commit

What I want is to commit a package or group of packages to both repositories at once, with the same version number if possible, so one repo can be mirror of the other. Is it possible using Gofer?
0
votes
1answer
55 views

designer file is listed separatelly form main class file

I have a UIViewController classes that has its own designer file but designer file is not shown as a sub-tree element in solution panel (GameScreen). On the other hand, second UIViewController ...
1
vote
1answer
196 views

Using contextMenu plugin with fileTree plugin without losing draggable support

The server is running off Ruby on Rails. Javascript is written using Coffeescript. I am currently using the jQuery File Tree plugin with the Context Menu plugin. Both are working at the moment, with ...
0
votes
1answer
318 views

How to manage a file tree

I have a JS file tree where i can delete, rename, add new files using ajax... I'm wondering what is the best way to update it when a file is deleted or a new one item is created or moved: Reload the ...
1
vote
0answers
261 views

JQuery Tree File Expand Folders

regarding this SO question: "jquery file tree - folder open by default?" i tried to get the workdaround of Bermo running... It works but only for folders like /images/fruit/ but not for a folder ...
0
votes
1answer
656 views

Making Jeditable working on new elements

I'm trying to make Jeditable works on new elements created using this jquery file tree. On right click on a folder or file a context menu is shown and after clicking "Rename" item on the context menu ...
1
vote
2answers
244 views

How can I get a node in a JTree file tree to know which file it is?

I wrote a file tree using JTree, and now I am trying to make it more efficient. I am trying to implement lazy loading, but I can't for the life of me get the nodes to recognize which file they are in ...
0
votes
2answers
286 views

PHP folder dropdowns

I am trying to make a dropdown menu of folders stored on a site. For example the top level would be a list of folders, and when the user hovers over the folder name, a dropdown appears so the user can ...
2
votes
2answers
118 views

Asynchronous operation of FileTree files?

Is there a way I can easily make the processing of FileTree files in a smart way in gradle tasks? I basically need to wait for the execution of all files, much like what you can do with GPars, but how ...
15
votes
5answers
446 views

Shortest sequence of operations transforming a file tree to another

Given two file trees A and B, is it possible to determine the shortest sequence of operations or a short sequence of operations that is necessary in order to transform A to B? An operation can be: ...