Tagged Questions
The renaming tag has no wiki summary.
13
votes
13answers
525 views
How should I rename many Stored Procedures without breaking stuff?
I've inherited an ASP.NET website with C# behind, pulling in data from MS SQL Server.
The database has had several successive maintainers over the years and any naming guidelines that may have once ...
10
votes
6answers
523 views
Renaming files: Visual Studio vs Version control
The problem with renaming files is that if you want to take advantage of Visual Studio refactoring, you really need to do it from inside Visual Studio.
But most (not all*) version control system also ...
10
votes
5answers
3k views
How to rename Java packages without breaking Subversion history?
The company I'm working for is starting up and they changed their name in the process. So we still use the package name com.oldname because we are afraid of breaking the file change history, or the ...
5
votes
1answer
325 views
bash: Truncate Filenames, keeping them unique
I'm using a for-loop similar to this one to truncate all filenames in a folder to 16 characters:
for i in *; do
Shortname=${i:0:16} # Let's assume I don't need the extension
mv "$i" ...
5
votes
4answers
2k views
Rename files in Xcode
is it possible to rename/refactor a class file and have it rename the actual file on disk? if so, how can i do this?
3
votes
1answer
59 views
php file renaming loop
I run a ecommerce site, and I have tons of product images.
The naming rules are simple: productid-picnumber.
But sometimes theres gaps betweeen the picnumbers.
Example for the pictures for product ...
3
votes
4answers
141 views
Does XSLT provide a means to identify xml elements by using regular expressions?
I have a sample xml file which looks like this:
--- before transformation ---
<root-node>
<child-type-A> ... </child-type-A>
<child-type-A> ... </child-type-A>
...
3
votes
1answer
113 views
Problems with package renaming in Mercurial project
I have been using Mercurial for a while in my Java project. I work in a two man team. When I do merges, I find that file renaming has not caused many problems, but package renaming has caused major ...
3
votes
5answers
394 views
identifier rename in java program
I need to programmatically rename identifiers within a given scope, for example, a method in java program. For example, given the following java function:
public void doSomething(){
int x = 10;
...
3
votes
2answers
244 views
Git: how to analyze code that has a multi-file history?
I'm about to move a ton of files around in an existing project. Before I do this, I'd like to have a firm grasp on some techniques used to analyze code that has a multi-file history.
How can I use ...
3
votes
1answer
451 views
Renaming a column in MS SQL Server 2005
What is the best practice when it comes to renaming a table column using SQL (MS SQL Server 2005 variant)? This assumes that there is data in the column that must be preserved.
2
votes
2answers
279 views
Excel vba Renaming checkboxes
I have a worksheet that contains many checkboxes. Excel names these automatically as CheckBox1, CheckBox2, etc... However, for my document, I need to rename them all as Rij11_1, Rij11_2, etc (Rij11 ...
2
votes
3answers
796 views
Change model name in rails easily
I'm going to need to change one of my model names. Is there anything out there that will replace every instance of the original model name in the controllers views and tests or do I have to do it all ...
2
votes
4answers
393 views
Rename several files in the BASH
I would like to rename files numbering: I have a files with '???' format I need to put them in '????'.
myfile_100_asd_4 to myfile_0100_asd_4
Thanks
Arman.
Not so elegant SOLUTION:
#/bin/bash
...
2
votes
2answers
60 views
How best to cope with naming scheme changes in a Rails app
I look after an Rails app, that's about to have some key user facing parts renamed (like urls, and other such change like renaming 'blogs' to 'journals' and so on)
I'm slightly worried that over ...
2
votes
3answers
1k views
a MYSQL script to convert the column names to lowercase
I am looking for a single MYSQL script to convert ALL column names in a database to lowercase in one go...
I have inherited a MYSQL database that has a lot of mixed case column names (150 tables with ...
1
vote
0answers
56 views
iCloud - renaming open documents on another device sometimes fails
The issue: I'm working on an iCloud document on device A, e.g. iPod Touch. Then I change the name of the document on device B, e.g. my Mac (via the Finder). The change goes up to the cloud and after a ...
1
vote
1answer
42 views
cakephp routes modify controllers name / fetching controllers name
I created a route which is analog to this one:
Router::connect("/backend/:controller/:action/*");
And now I want to route every controller that fits this pattern to be renamed to something like ...
1
vote
2answers
53 views
Clearcase renaming issues
I am experiencing a problem with Clearcase. What happened was the following:
I had a file ValidationScripts.js, and wanted to create another file in the same directory, MiscScripts.js. However, ...
1
vote
1answer
101 views
bulk rename fo files to lowercase in git
I have an entire git repo where I'd like to rename all the files and direcories to lowercase.
Running on Win7, I've added igorecase = false to the gitconfig and renamed a few files through eclipse. ...
1
vote
1answer
98 views
c# service renaming files!
I have a windows service , that takes files with metadata(FIDEF) and corresponding video file and , translates the XML(FIDEF) using XSLT .
I get the file directory listing for FIDEF's and if a video ...
1
vote
3answers
2k views
WindowsError: [Error 2] The system cannot find the file specified
I am having a problem with this code. I am trying to rename all of the filenames within a folder so that they no longer have +'s in them! This has worked many times before but suddenly I get the ...
1
vote
1answer
117 views
Renaming a group of files, at the same time, using a regex to concatenate a number before their extension - Python or Batch Script
I want to rename each file that ends in .log, but I have similar files like:
x.log
x01.log
y.log
y01.log
....
I want to rename every file, at a time, with that extension (.*) but without any ...
1
vote
2answers
396 views
batch file renaming “This.is.a.FIlename.mp3” to “tiaf.mp3”
okay so I have a dir with some files. I want to do a specific file-renamingscript
i'm stuck with this part, taking only the first letter of each part of the filename:
if the filename would be
...
1
vote
4answers
152 views
Oracle: Adding, renaming, and dropping columns on live database
What operations are permitted and not permitted on a live, running Oracle database? Specifically, how is this handled when adding, dropping, and renaming columns?
1
vote
2answers
187 views
How to change naming conventions in large bodies of existing code?
I need to change an existing code base from naming convention X to something like Camel Case.
It's in Visual Studio 2008. A couple of hundred thousand lines of code. Some of it is C#. Some of it is ...
1
vote
6answers
539 views
Batch renaming files using UNIX - should I use awk?
I have a large number of image files that i need to rename from the comand line. I believe the best way to do this is to use awk (please correct if this is incorrect).
file names are like the ...
1
vote
2answers
353 views
Changing FileNames using RegEx and Recursion
I'm trying to rename files that my program lists as having "illegal characters" for a SharePoint file importation. The illegal characters I am referring to are: ~ # % & * {} / \ | : <> ? - ""
...
1
vote
1answer
68 views
Eliminating false dependencies
I have a quite general question regarding false dependencies. As the name implies, these
are not real dependencies and can be eliminated. I am aware of the technique called register renaming that ...
0
votes
1answer
33 views
Possible to rename widget after laid out in RelativeLayout?
Working with Android for the first time, I've blocked out a layout using the relative layout and laid down some buttons and text widgets how I like them. However when I go back to rename the IDs the ...
0
votes
2answers
90 views
rename a set of files, by changing their prefix
I've got a set of four directories
English.lproj
German.lproj
French.lproj
Italian.lprj
each of this contains a serie of XMLs named
2_symbol.xml
4_symbol.xml
5_symbol.xml
... and so on ...
...
0
votes
2answers
35 views
replace names of all directiories and files in PS
I want to replace all space characters into "_" in names of all subfolders and files.
Unfortunately when I type:
Get-ChildItem -recurse -name | ForEach-Object { Rename-Item $_
$.replace(" ","") ...
0
votes
1answer
39 views
Renaming namespaces in windows phone
Is it possible to rename the namespace, projectfolder, solution name in windows phone? I have a paid version and free version of app. The free version of the app has minor modification. So I tried ...
0
votes
2answers
110 views
Renaming folders, files and subfolders in bash
I have a problem with a bash script...
I want to rename all files, folders and subfolders in a recursive manner, from
lower-case to upper-case (or viceversa).
I've wrote this script, but it doesn't ...
0
votes
3answers
69 views
Can AutoHotKey Create a Renaming Droplet?
I'm a clerical assistant. When files get exported from our document management system, they arrive like this:
BIGNAME-#9999999-This_Is_The-File_Name_Right_Here.doc
I'd like to basically create an ...
0
votes
3answers
124 views
Renaming fields in linked-table MDB file pair?
I have an Access 2003 database using MS-JET linked tables (that is, there are two *.mdb files). The overall task is to move to SQL server. However the existing databases have multiple fields with ...
0
votes
0answers
50 views
Renaming problem in Clockstone theme [closed]
I bought a HTML/CSS theme from the web (clockstone) and I'm trying to implement it, but I stumbled upon a error. I've got a page named contacts.html and I want it to be contact.html. But when ...
0
votes
2answers
29 views
How can I rename a solution and projects in it without breaking anything on PerForce depot?
I would like to rename my solution and a couple of classes etc. in it which is already in source-control depot, in Perforce depot.
How can I do that step by step without harming the depot and the ...
0
votes
1answer
145 views
Android Google Analytics (R.id) Renaming Buttons
Button createEventButton = (Button)findViewById(R.id.NewEventButton);
Button createPageButton = (Button)findViewById(R.id.NewPageButton);
Hallo
I have searched all over but I don't get it. Should I ...
0
votes
1answer
80 views
c# - Bypassing Windows Forms ClassName name creation to one of my own
I need help to set a Windows Form window classname to one chosen by myself.
Didn't find anything useful, so I ask here.
I need this because an old C++ application DLL written by my brother(he has not ...
0
votes
1answer
147 views
Outlook VBA Sourcing attachment filename from a string found within the attachment
I am trying to write some code in Outlook (VBA) that will automatically save attachments to file as they arrive. However, the difficulty is that the filename that I want to save them as is partially ...
0
votes
4answers
106 views
Renaming filenames using python
I need to simply add the word "_Manual" onto the end of all the files i have in a specific directory
Here is the script i am using at the moment - i have no experience with python so this script is a ...
0
votes
2answers
123 views
Rename illegal column names with PHP for mySQL
I have a column named "read" in my table.
When I try to perform operations on it, PHP tells me there's an error surround 'read'. From previous experience with this kind of errors, I have determined ...
0
votes
2answers
121 views
C# Directory Renaming Issue [closed]
Possible Duplicate:
Renaming Directory with same name different case
I appear to be running into a rather strange issue. I am using Directory.Move(oldDir, newDir) to attempt to rename a ...
0
votes
2answers
70 views
renaming a variable name in php at runtime
I am trying to convert an xml document into an associative array.
I want the name of the array to be the root node in the xml document.
I get this information by $xml->getName() .
I thought of ...
0
votes
2answers
96 views
how can we extract the file extension of a file using ant script?
The scenario is as follows:
Therea are three files :
test.xls
test.txt
test.doc
I am working with mqfte right now. When these files are transferred to another location the filenames must be as ...
0
votes
1answer
42 views
Sharepoint Document Renaming
How to rename a document in the document library using sharepoint object model coding.
Please help.
Thank you,
Rajshekar
0
votes
1answer
170 views
How to remove spaces from many file names under Cygwin
Im hoping that someone can help me, I need to remove spaces (not replace with underscores) from several thousand files on a system with cygwin.
Can I do this from the shell using rename or mv somehow?
...
0
votes
2answers
111 views
How can I change access modifiers of more than one method in one shot by using ReSharper?
Is there a short-cut in ReSharper to change more than one method's access-modifiers from something to something else?
Let's say I will choose methods:
public void Method_1(){...}
private void ...
0
votes
1answer
71 views
Renaming XML elements in Ruby?
How does one go about renaming an XML element using REXML or another Ruby library?
Thanks for any advice.