|
I have a folder on the SBS 2003 server where I want users to be able to edit files, but not move or delete them. The files are in Excel. When I removed the delete permission, I couldn't save the files. I assume this is because Excel deletes the original...
Started by Eamon on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
You might want to consider some....
Unfortunately, the user would need to request the file be unlocked in order to save, and in that window the user could delete the file.
Locking could work, as in locking the file when it is unused.
|
|
I'm working on transferring a lot of files (>100GB, several thousands of files) over my network to a new Mac. Once the transfers are done I'd like to be able to verify that all of the files were successfully transferred and that no corruption occurred...
Started by amdfan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at superuser):
If you have....
If you were to do this manually, you would need to generate a checksum for each file on both, but it's an interesting read.
That the files were present in both locations it would do nothing to verify the integrity of the data.
|
|
When I move .xaml and .xaml.vb files to a new Silverlight project, the generated .g files no longer include members for the x:Name attributes defined in the xaml file. This means the code-behind files can't refer to those members and cannot build.
Started by Pete on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In Visual Studio, select ....
This seems like a bug in Visual Studio.
To another using the Visual Studio Solution Explorer, it puts that usercontrol into the vbproj file the files are transparent so you can figure them out and modify them.
|
Ask your Facebook Friends
|
I wanted to move all the files having certain patterns of the current directory to a folder.
Example- I wanted to move all the files starting with nz to foobar directory. I tried it using mv but didn't work out well.
Started by aatifh on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
However, for more complex pattern matches you ....
For files in nz* do mv $files foobar done
Edit: As shown above this totally over the top.
This will do it, though if you have any directories beginning with nz it will move those too.
|
|
I'm using Team Foundation Server 2008 (SP 1) and I need to move multiple files from one folder to another (to retain file history). In addition to Team Explorer (with SP 1) I've also got the latest TFS Power Tools (October 2008) installed (for Windows...
Started by Rob Sanders on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Stick all the files that you wish to move, under a folderUse the tf.exe tool from the Visual studio commandline - it can handle wildcards:
tf.exe move <olditem> <newitem>
Example....
Them in Visual Studio solution explorer.
|
|
I often do the command such as:
mv folder $something_that_does_not_exist mv files* $something_that_does_not_exist
Then, I realise that my files are gone. I cannot see them even in the folder "$something_that_does_not_exist". Where have my files and folders...
Started by Masi on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Otherwise, if there is only one file matching names when using cp or mv :
$ touch foo $ mv foo bar/ mv: cannot move `foo' to `bar/foo': No such file file(s) ....
Directory, it will move the "files*" into "abcde".
|
|
Hi,
Apparently I can't move files on different volumes using Directory.Move.
I have read that I have to copy each file individually to the destination, then delete the source directory.
Do I have any other option?
Started by Blankman on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
files = Directory.GetFiles(directory); foreach (string file in files) { FileAttributes attributesRegardless of whether or not Directory.Move (or any other function) performed the move between increase, that's not going to....
|
|
I've got to move around 320,000 files, 80,000 folders (only 100 Gb) of data. Some files are > 1GB but most are < 1kB.
I've had a look at http://serverfault.com/questions/26467/fastest-method-of-copying-files but I'm not sure how useful any of these...
Started by in.spite on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
It takes time transfer is alot faster than USB2....
I've pushed millions of small files to and from USB drives using robocopy.
Copying 1 giant file over, compared to thousands of files, it also consumes less resources I believe with.
|
|
I don't get it. I created a folder. Added it using the SVN Add command. Then took one of the files that was already versioned and right mouse moved it. When I got the context menu I selected "SVN Move versioned Items here"
Ok fine, it moved. But it deleted...
Answer Snippets (Read the full thread at stackoverflow):
When browsing the repository....
@Thorarin, Subversion has supported moving files.
Starting with 1.5 it supports moving files as it exists in the repository, including at other paths.
Are using Subversion prior to 1.5, this is normal.
|
|
Dear all,
I have a directories that look like this
fool@brat:/mydir/ucsc_mm8> tar -xvf *.tar 1/chr1.fa.masked 1/chr1_random.fa.masked 2/chr2.fa.masked 3/chr3.fa.masked 4/chr4.fa.masked 5/chr5.fa.masked 5/chr5_random.fa.masked 19/chr19.fa.masked Un/...
Started by neversaint on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
So to ....
Of moving files all files matching a particular expression is
mv 1/*.masked targetDir
where works in at least bash and zsh:
ls */*.masked
This will return all of the files that end in .masked one directory deeper.
|