rename

Batch rename&copy&delete not working?

On whatever reason this is not working [gives 'file not found'] set in=c:\myprogram\_save cd %temp% ren 1RO.dat "Titanic Moves 1 of 3 Rotterdam.dat" ren 12RO.img "Titanic Moves 1 of 3 Rotterdam.img" ren 2HA.dat "Titanic Moves 2 of 3 Hawai.dat" ren 22HA.img "Titanic Moves 2 of 3 Hawai.img" ren 3NY.dat "Titanic Moves 3 of 3 NY.dat" ren 33...

Mass change datatype and rename of dependent store procedure variables

Hi all I am in the process of optimising my database and I was thinking of changing the datatype for some columns from DATETIME to SMALLDATETIME on my tables. Is there a system stored procedure that returns both the contents/code of a store procedure and the dependent table which will then allow me to do a join on a filtered list of ta...

Renaming a file using Java

Can we rename a file say test.txt to test1.txt? What if test1.txt exists will it rename? How do I rename it to the already existing test1.txt file so the new contents of test.txt are added to it for later use? ...

Is there a way to change a SVN users username through the entire repository history?

When my team first started out with SVN we all just used our first names when committing to the repository, however, now that our team has grown, we are running into issues because we just hired a second 'Mike'. What we would like to do is change everybody's usernames to be the same as the username on their computer (first name initial ...

using PHP to rename files with spaces

I've got files with spaces in their names that are already on my server. I want to rename them with underscores. I've tried putting a slash before the space, and I've tried replacing the space with %20. Still PHP gives me: No such file or directory. Here's my code: $dir = './'; $dhandle = opendir($dir); $old_files = array(); if ($dhand...

svn rename problem

Hi, Our code is C++ and is managed in svn. The development is with Visual Studio. As you know Visual Studio C++ is case insensitive to file names and our code unfortunately "exploited" this heavily. No we are porting our application to Linux + gcc, which is case sensitive. This will involve a lot of file names and file changes. We plan...

Linux: Move 1 million files into prefix-based created Folders

I have a directory called "images" filled with about one million images. Yep. I want to write a shell command to rename all of those images into the following format: original: filename.jpg new: /f/i/l/filename.jpg Any suggestions? Thanks, Dan ...

Git: Renaming a directory in a branch

I have a project using Git where I've branched off of master to rename a directory. The rename in the branch works as expected. When I switch back to the master branch the directory has its original name, but there's also an empty directory tree with the name that I changed it to in the branch. Is this the expected behavior? Am I missi...

Rename a SharePoint list content type

I need to rename the content type I created a couple months back and have been using for a document library, assigned site columns to, created document library views for and have added workflow to. It appears that this is quite simple to do under the site settings for content type. However it is often the simple, apparently straight for...

Newbie- Create mySQL Joomla database -- did not name mySQL db same as ISP - Can I rename?

New to Joomla and mySql environment. Created a Joomla test environment on localhost but did not name the mySql database to that of the target ISP. Is there a way to rename the database so I can load to ISP? ...

Using rsync to rename files during copying with --files-from ?

Using rsync, how can I rename files when copying with the --files-from argument? I have about 190,000 files, each of which need to be renamed when copying from source to destination. I plan to have the list of files in a text file to pass to the --files-from argument. ...

bash: how to change the basename only of a list of files

Hi all, I have a lit of files (which I get from find bla -name "*.so") such as: /bla/a1.so /bla/a2.so /bla/blo/a3.so /bla/blo/a4.so /bla/blo/bli/a5.so and I want to rename them such as it becomes: /bla/liba1.so /bla/liba2.so /bla/blo/liba3.so /bla/blo/liba4.so /bla/blo/bli/liba5.so ... i.e. add the prefix 'lib' to the basename any ...

Rename user name iSQL plus

Hi there, I was wondering how you would change the name of a username in iSQL plus. Thank you. ...

Hibernate - renaming objects with a unique constraint.

Say you have a bunch of Article objects, with a "title" property. Then there's an ARTICLE table with a TITLE column. The TITLE column has a unique constraint. The UI shows all the articles on one page, with a text field for editing the title. Imagine a situation where you have two articles X & Y, X having the title "1" and Y having the...

Using FTP how do I rename a directory with trailing spaces?

I have a directory on my website the has two trailing spaces (automatically created) and now I need to rename it to the same name with out the spaces. For example: ren "BON N ALL " "BON N ALL" But I keep getting; ftp> ren "BON N ALL " "BON N ALL" 550 BON N ALL : The system cannot find the file specified. I've tried using wildcar...

JQuery code to rename a div

Is there any method to rename a div element. I have a div with id fm_form_container,which lists a set of forms. If I click a link in a tab,for eg, My Forms, I want the name of this fm_form_container to change as tab_content_container. That is, all my forms should come inside the div, tab_content_container. Is there any method to rename...

rename part of filename

Hello, sorry for the properly stupid question, but I am quite a newbie. I have loads of files which look like this: DET01-ABC-5_50-001.dat ... DET01-ABC-5_50-0025.dat and I want them to look like this: DET01-XYZ-5_50-001.dat ... DET01-XYZ-5_50-0025.dat how can I do this? I tried several things from this forum but I seem to make a...

Batch file copy does destination file already exist?

Here is the snippet. %%X is the source path. I want to replace the source path with destination path or just remove the source path. %_DEST%\%%X is not working in this snippet... where it checks to see if the destination file already exists. What is the proper way to check to see if the destination file exists? call :LOGMSG Copying ne...

Mercurial: TortoiseHg's "guess rename" from the commandline?

Is there any hg functionality to mimic the "guess renames" command of TortoiseHG? I really dig this one, however I am currently using MacOS and have Murky or the commandline interface available. ...

Renaming rows and columns in R

I'm running the following script: cause = c(1, 1, 1, 1, 1, 2, 1, 2, 2, 2, 2); time = c(1, 1, 2, 3, 3, 2, 2, 1, 1, 2, 2); table(cause, time) And I get the following:           time cause 1 2 3        1 2 2 2        2 2 3 0 What I want is this:                time      cause 1 2 3   Maltreat 2 2 2 Non-Maltr 2 3 0 So, my questi...