I need to create A set of empty folders, starting at 10, going to 180. This is the script I'm trying to use, but it just creates 10, and nothing else.
Option Explicit
Dim objFSO, objFolder, strDirectory, i
strDirectory = "\path\to\main\folder"
Set objFSO = CreateObject("Scripting.FileSystemObject")
i = 180
While i < 180
Set objFold...
Hi,
I work in a company of about 20 people, I need to share some files with all of them in a folder(s) (files are constantly changed by me).., so they need to get the latest changed file automatically (pushed to their computer) What's the best program/system for this task?
I need to be able to administrate their read/write access to the...
Hi,
I am trying to get a batch script to check whether a folder contains any files in it. So far this is how far I have got:
IF EXIST %FILEPATH%\%%i\FromGlobus\%FILE% (
%WINZIP% %FILEPATH%\GlobusEOD\ExtraFiles\%ZIPFILE% -m %FILE%
IF errorlevel 1 goto subBADEND
)
where %FILE% is *.* but what happens is it tries to zip up files even ...
Hello Coders,
I want to use a CheckedListBox in an application where each item in the ListBox is the name of a folder on my hard drive and for the purpose of reading and writing text files to and from each of these folders I want to ensure that one and only one item (a folder) can be selected at any one time in the CheckedListBox
How c...
hi all, I'm trying to use php to create a zip file (which it does - taken from this page - http://davidwalsh.name/create-zip-php), however inside the zip file are all of the folder names to the file itself.
Is it possible to just have the file inside the zip minus all the folders?
Here's my code:
function create_zip($files = array(),...
Hello,
I would like to trim an x amount of characters from the left of multiple folders.
Imagine having these folder names:
01.a-foldername
02.b-foldername
03.c-foldername
After being processed by the VBscript they become:
a-foldername
b-foldername
c-foldername
...
How do I access folders such as /conf, /usr/bin, /var with ftp?
I want to be able to edit the files in them using a program like filezlla
I heard it had to be done with vsftpd, can someone explain more about that -and using filezilla
sorry if it sounded stupid
...