tagged [rename]
Rename multiple files in cmd
Rename multiple files in cmd If I have multiple files in a directory and want to append something to their filenames, but not to the extension, how would I do this? I have tried the following, with te...
- Modified
- 22 Sep at 06:22
How do you rename DataGrid columns when AutoGenerateColumns = True?
How do you rename DataGrid columns when AutoGenerateColumns = True? I have a simple data structure class: Which I am feeding into a `DataGrid`: I would like to change the column headings. Ie: claim_nu...
- Modified
- 28 Nov at 02:8
Renaming a directory in C#
Renaming a directory in C# I couldn't find a DirectoryInfo.Rename(To) or FileInfo.Rename(To) method anywhere. So, I wrote my own and I'm posting it here for anybody to use if they need it, because let...
Using sed to mass rename files
Using sed to mass rename files Change these filenames: - - - to these filenames: - - - To test: To perform: I don't understand the sed code. I understand what the substitution command means. And I und...
- Modified
- 2 May at 05:24
git: rename local branch failed
git: rename local branch failed I don't know why my attempt of renaming local branch failed. I basically cloned the project, then I also have a submodule within the project, and I downloaded the submo...
How to rename a directory/folder on GitHub website?
How to rename a directory/folder on GitHub website? I was able to find a way on GitHub Website to [rename](https://github.com/blog/1436-moving-and-renaming-files-on-github) a single file and did so wi...
Prevent a user from deleting, moving or renaming a file
Prevent a user from deleting, moving or renaming a file What I am trying to do is while my program is using a file, I want to keep the user from renaming, deleting, or moving the file (well... a move ...
- Modified
- 8 Sep at 00:36
How to rename a folder in c# which is currently opened by windows explorer
How to rename a folder in c# which is currently opened by windows explorer When renaming a folder in C#, `System.IO.Directory.Move` throws `System.IO.IOException` (message "access denied") if that fol...
- Modified
- 2 Sep at 14:10
How do I rename all folders and files to lowercase on Linux?
How do I rename all folders and files to lowercase on Linux? I have to rename a complete folder tree recursively so that no uppercase letter appears anywhere (it's C++ source code, but that shouldn't ...
Re-order columns of table in Oracle
Re-order columns of table in Oracle I have a table with 50+ columns and I need to swap the order of the first two columns. What is the best way to accomplish this using Oracle? Assume the table name i...
Renaming Column Names in Pandas Groupby function
Renaming Column Names in Pandas Groupby function # Q1) I want to do a groupby, SQL-style aggregation and rename the output column: Example dataset: ``` >>> df ID Region count 0 100 Asia 2 1 1...
- Modified
- 11 Feb at 01:3