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...

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...

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...

29 Dec at 06:25

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...

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...

22 Aug at 14:14

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...

6 Nov at 16:35

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 ...

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...

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 ...

13 Sep at 11:16

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...

9 Feb at 15:13

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...