A FileTree represents a hierarchy of files
Questions tagged [filetree]
81 questions
0
votes
2 answers
Can a website use multiple .htaccess files if it exists multiple times in the file tree?
I was actually wondering,
If I'd put a .htaccess in the /public_html folder and inside the /public_html/example_site/, would the pages inside /public_html/example_site/ use both of them?
And which of the two would be in favor, in case of conflicting…

Sander Schaeffer
- 2,757
- 7
- 28
- 58
0
votes
1 answer
Convert a list of filenames to filetree in PHP?
Is there any library or plugin that I can use to easily convert a list of filenames into a filetree ?
Say for example I have an array that contains a list of file names that I read from…

Rafik Bari
- 4,867
- 18
- 73
- 123
0
votes
2 answers
Frames at the center of a page
I would need to put two separate frames at the center of a page that would exactly look like this (see this). The first frame (left) is where the file tree is displayed and the second frame is where the search results would appear. In that pic, I…

katherineannika
- 1
- 3
0
votes
1 answer
How to initialize FileTree field in Gradle custom task?
I want to create an object which implements interface FileTree in Gradle.
From what I can find from documentation FileTreeAdapter class implements FileTree, but it is internal class.
How can I initialize my object filesToDelete? And how can I…

Xelian
- 16,680
- 25
- 99
- 152
0
votes
1 answer
How to get a NSDictionary with NSArray with file paths?
I have a NSArray which looks like this:
@[@"file1", @"directory/testfile", @"directory/otherdir/testfile", @"otherdir/", @"otherdir/otherfile"]
And I'm trying to convert it to a NSDictionary which looks like this:
@{
@"directory/":@{
…

pmerino
- 5,900
- 11
- 57
- 76
0
votes
1 answer
How do I make a file/project files tree view in C#
I wish to make a program that will create a project that will have various sub folders. The only problem is that I don't have an idea how to start with it. We have not covered this in college.
If you could point me to a tutorial, explain how or give…

Robin
- 2,704
- 7
- 30
- 47
0
votes
1 answer
How can I make a callback in CoffeeScript
I have this little bit of code mixed in with node.js and it allows me to create an unordered list of the directory. What I want is for the parent looping function to pause and wait for the child loop to finish and then continue with the code.
This…

JosephSmith127
- 3
- 3
0
votes
1 answer
Hide files & folders in jQuery File Tree
I am using jQuery File Tree to display a directory listing, toghether with the standard PHP connector provided with the File Tree code.
Everything works fine, but I need to filter the listing to avoid the inclusion of hiden files and not desired…

jm_
- 631
- 2
- 12
- 20
0
votes
1 answer
php file/folder treeview for os disk and network 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 where it is placed.
User must be able to browse…

django
- 2,809
- 5
- 47
- 80
0
votes
1 answer
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.
Can someone help?

Alex Mladin
- 9
- 2
0
votes
1 answer
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.

Nordlöw
- 11,838
- 10
- 52
- 99
0
votes
3 answers
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, grep or anything else to compare only if the file…

Keith Loughnane
- 475
- 1
- 5
- 21
0
votes
1 answer
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 have the class
public class MyFileDir // can be a…

Tono Nam
- 34,064
- 78
- 298
- 470
0
votes
1 answer
designer file is listed separately 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 (SettingsScreen) designer file is shown as a child to…

To Ka
- 640
- 8
- 24
-1
votes
0 answers
Microsoft SQL Server Management Studio how to program refresh object explorer to default to a set of exploded folders?
Is there a way to program SQL to do the following?
After creating a new table or new procedure I'll often hit refresh on Object Explorer so that I can see those objects on the server. However, the server refresh collapses all the folders and I…