Questions tagged [renaming]
342 questions
0
votes
1 answer
GWT class members naming
I'm using GWT.
When it is compiling the Java code to Javascript code, sometimes it changes some of the members' names.
for example:
private int height;
becomes in the JS:
height_0;
Example:
public class TestClass
{
private int a;
public…

user1442141
- 25
- 4
-1
votes
1 answer
Renaming a button from a string
I am trying to rename a button from a string. Sounds simple enough? Well I have scowered the internet and tried many things however I keep coming up with the same errors.
I have 2 forms and one class file. I am using object orientation to pass a…

Marshal
- 1,177
- 4
- 18
- 30
-1
votes
1 answer
Renaming list of Google Image URLs and saving in new folder
I know what I want to do but I can't figure out where to start I'm afraid.
do I need python?
or can Excel or Google Sheets do this with a script?
In a Google sheet which stores data on 100 products in our forthcoming e-commerce store, I have 100…

SJJHR
- 9
- 3
-1
votes
1 answer
SQL Server refactoring technique for renaming tables and renaming views
I was researching common naming conventions for tables and views and I came across this question:
Naming Database Tables and Views
One of the users posted this response:
Using v for view as a standard is particularly bad in my eyes because it…

user3621633
- 1,681
- 3
- 32
- 46
-1
votes
2 answers
Renaming multiple files in cmd (windows) or with Python
I'm trying to rename a list of 470 files with the name p01, p02 etc to a specific name for each file. So I've got a list (.txt or .xls) in the correct order for those filenames, but I'm unable to figure out a for loop to rename this in a batch.…

JeBo
- 187
- 1
- 3
- 12
-1
votes
2 answers
How to insert timestamps into strings in python?
I have a program that I need to copy files from one location to another, then rename the copied file to include a timestamp at the end of the name. So when a file gets copied, the time it was copied gets rewritten to the end of the file name.…

Spenco100
- 11
- 1
- 1
-1
votes
1 answer
Looking for tips to batch convert legacy date format in Powershell to ISO 8601
YYYYMMDD in files that are entered inconsistently for example 10-24-2007, Oct-24-07, oct-07
-1
votes
2 answers
Batch file to move files up one level renaming duplicates
I have been trying to create a batch file that I can just drop into the MAIN FOLDER dir and running it will move all of the *.EXT up one level into the Folder2 and Folder3 respectively:
C:\Main Folder\Folder2\Folder3a\File1.EXT
C:\Main…

user2826193
- 25
- 5
-1
votes
2 answers
Renaming multiple files in a loop
I have a folder with 8 Excel files with the following naming convention:
date_All_Groups
date_HRFull_Status_All
date_RME_Groups_Excluded
These files are used for monthly reports, therefore the date will obviously always be different.
I will be…

Eitel Dagnin
- 959
- 4
- 24
- 61
-1
votes
1 answer
ssis renaming a file wthout knowing existing name
I have set up part of my ssis package to check a folder and move the csv file to another folder using a file system task.
Is it possible to rename a file without knowing what the source name will be? as I have been told it will be a new name on a…

sql2015
- 591
- 3
- 13
- 34
-1
votes
1 answer
Rename file to folder path
I'm trying to rename files within thousands of folders to the folder path
So the file 123.jpg in C:\ABC\123.jpg needs to be renamed to ABC_123.jpg
Whats the simplest way of doing so?

OSELI
- 1
-1
votes
1 answer
Replace one or more sub-strings from multiple file names in a folder
I have a list of files for which I would like to replace a substring within their name. The glob.glob(path) returns:
'./path\\2016_Joe_Black_tall_blond',
etc.
where Joe_Black should become Joe-Black.
I would have to do the same for other names,…

Andreuccio
- 1,053
- 2
- 18
- 32
-1
votes
1 answer
Renaming Sub-Folders with VBScript
I need to add a counter pattern to sub-folders of a chosen folder.
My VBScript so far is:
AuswahlTitel = "Bitte Datei oder Verzeichnis auswählen"
StartOrdner = "17" 'Arbeitsplatz
Set Dateiauswahl =…

Sebastian Röher
- 417
- 7
- 20
-1
votes
1 answer
Renaming the alias in tableau
How can I rename the alias in calculated field? I have calculated field "area" which display the integer values of the areas. I want to display each area as string as a data type, naming as "area coordinate A" and "area coordinate B" and so on. The…

SPP
- 21
- 3
- 9
-1
votes
2 answers
Zero-pad numbers in file names that are not padded
I have a directory full of files named
image_1.jpg
image_2.jpg
...
image_10.jpg
...
image_335.jpg
Now I want to use a command line tool which expects the images to be alphabetical ordered. But the alphabetical order of these filenames is:…

sweiler
- 397
- 1
- 3
- 7