filemanagement

Searching directories for tons of files?

I'm using MSVE, and I have my own tiles I'm displaying in layers on top. Problem is, there's a ton of them, and they're on a network server. In certain directories, there are something on the order of 30,000+ files. Initially I called Directory.GetFiles, but once I started testing in a pseudo-real environment, it timed out. What's the b...

What is the best way to handle files for a small office?

I'm currently working at a small web development company, we mostly do campaign sites and other promotional stuff. For our first year we've been using a "server" for sharing project files, a plain windows machine with a network share. But this isn't exactly future proof. SVN is great for code (it's what we use now), but I want to have ...

Replacing Windows Explorer With Third Party Tool

How would I go about replacing Windows Explorer with a third party tool such as TotalCommander, explorer++, etc? I would like to have one of those load instead of win explorer when I type "C:\directoryName" into the run window. Is this possible? ...

Preferred protocols to upload static files to your Apache server ?

Hello!If you were the administrator of an Apache web server, what protocol(s) would you prefer to provide, for the web developers to upload static files (html/gif/css/...), with the goal of maximum security ? If you were the web developer/graphic designer, what protocols would you prefer to be available at the Apache server, to upload st...

What is a better way to create an access database of file names using C++ Builder?

Final question for the night. And apologies for the complete noobness of this. I have, with help from stackoverflow and google achieved the following... void __fastcall TForm1::Button1Click(TObject *Sender) { ADOCommand1->CommandText = "drop table pictures purge"; ADOCommand1->Execute(); ADOCommand1->CommandText = "create table pic...

PHP File Management System

We need to create a file management interface that integrates with the clients current website built on cakephp. The file manager must only let the users see the files that they have permissions too. The user will be able to upload files(of any size) and have other users download those files (if permissions allow). This is no problem ...

Vb.Net Document Storage

I am attempting to add a document storage module to our AR software. I will be prompting the user to attach a doc/image to thier account. I will then put a copy of this file into our folder so that we can reference it without having to rely on them keeping the file in its original place. This system is not using a database but instead i...

Location of my own directories

Hello, I am trying to understand how to create my own directory tree and access it from my application. I am doing some kind of learning program and want to create a directory structure like this: -MyLessonsDirectory --LessonDirectory_1 ---Step_1 ---Step_2 ---Step_3 --LessonDirectory_2 ---Step_1 ---Step_2 ---Step_3 . . and so on I...

directory listing with restrictions

I am trying to make a script that lists only folders within a folder. The thing is that I have users who can create folders within their folders so basically what I'm trying to do is to have a way for users to manage their folders and storing files... My problem is that I want to make php "think" that the root folder is their home direct...

How to organize downloaded demos, source code, open source projects utility etc. on Windows?

I have already asked this question on SuperUser but it was suggested there that I should ask it on SO. So here. As a programmer, I downloads many files that includes small utilities from codeplex or google code, sample source code from code project, other free tools/utilities. Usually these files have meaningless file names. The file re...

.NET File Management Control

I am currently working on a portal site for provisioning Intranet sites in a Windows Server 2008 based infrastructure, and I am in need of providing a file management control that will allow the users of the portal to upload their sites to the server and manage the files. I have looked at solutions like FileVistaControl (which would work...

Content is not retreived from file

Hello, I've got this wired problem, I cannot get the content from the file and initiate my NSMutableArray with it. Here's my code: NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsDirectory = [paths objectAtIndex:0]; NSLog(@"Does file exist?: %i", [[NSFileManager d...

SSH console file management

Hi! Do you know how to do file transfers via ssh. It's like you open two instances of the project and you transfer file from that remote instance to your instance. I was able to do this before via Putty but I completely forgot the keys I press to get this thing to work. It is like Midnight Commander where you have a cursor and two pan...