Tagged Questions

3
votes
6answers
315 views

How to do this in PowerShell? Or : what language to use for file and string manipulation?

What language should I use for file and string manipulation? This might seem objective, but really isn't I think. There's lot to say about this. For example I can see clearly that …
3
votes
12answers
1k views

Rename files in sub directories

Is there any way of batch renaming files in sub directories? Example: Rename *.html to *.htm in a folder which has directories and sub directories.
3
votes
8answers
861 views

Best Awk Commands

I find AWK really useful. Here is a one liner I put together to manipulate data. ls | awk '{ print "awk " "'"'"'" " {print $1,$2,$3} " "'"'"'" " " $1 ".old_ext > " $1 ".n …
0
votes
2answers
81 views

Does Directory.GetDirectories(path) return full paths or just names?

In the MSDN documentation, it says it returns just directory names("Return Value Type: ... An array of type String containing the names of subdirectories in path."), however in the …
1
vote
3answers
145 views

Fast way to add line/row number to text file

I have a file wich has about 12 millon lines, each line looks like this: 0701648016480002020000002030300000200907242058CRLF What I'm trying to accomplish is adding a row numb …
2
votes
2answers
519 views

Renaming files during ANT copy

I'd like to copy a directory of files, and rename some of them in the process. When I run the script below, nothing copies. If I comment the glob mappers in the file below, the fil …
0
votes
4answers
154 views

Linux command for removing all ~ files

What command can I use in linux to check if there is a file in a given directory (or its subdirectories) that contain a ~ at the end of the file's name? (Example if I am at a direc …
1
vote
4answers
726 views

Split Files using tar ,gz,zip or bzip2 [closed]

Hello, i need to compress file and it's giganitc file :D the size is about 17-20 GB i need to split it to files in size around 1GB for each part , i tried to googleit and found way …
0
votes
0answers
56 views

Moving files within an ext4 filesystem? [closed]

I'd like to decrease the access-time for some files by moving them to the beginning of the fs. Task 1: Clear a certain block range at the beginning of the fs (moving existing fil …
1
vote
3answers
112 views

Saving results of Regex Search into a file with Vim

I've got a HTML file, and I'd like to grab all the links that are in the file and save it into another file using Vim. I know that the regex would be something like: :g/href="\v( …
0
votes
2answers
39 views

Creating a ‘New File Windows’ behavior

Hi guys, in a windows environment and in several applications, when we create a new file with the same name of an existing file, the user is not prompted with a message that the o …
1
vote
3answers
86 views

How to reliably handle files uploaded periodically by an external agent?

It's a very common scenario: some process wants to drop a file on a server every 30 minutes or so. Simple, right? Well, I can think of a bunch of ways this could go wrong. For i …
3
votes
3answers
414 views

How do I download javascript string as a file

Application requests KML data through AJAX from server. This data is stored in javascript variables, and displayed in Google Earth plugin. In javascript, how do I provide a lin …
0
votes
3answers
229 views

php file manipulation functions fails on my localhost saying permission denied

im running on windows xp and i am an administrator, im using the latest xampp bundle available from their site and i receive these kinds of errors when i use file manipulation func …
1
vote
2answers
785 views

How can I recursively copy files of a specific pattern into a single flat folder on Windows?

I need to copy a set of DLL and PDB files from a set of folders recursively into another folder. I don't want to recreate the folder hierarchy in the target folder. I want to use …