Tagged Questions
The file-manipulation tag has no wiki summary.
9
votes
8answers
845 views
PHP x86 How to get filesize of >2GB file without external program?
I need to get file size of file over 2GB size. (testing on 4.6GB file) It there any way to do this without external program?
Current status:
filesize(), stat() and fseek() fails
fread() and feof() ...
9
votes
3answers
2k views
bash, Linux: Set difference between two text files
I have two files A-nodes_to_delete and B-nodes_to_keep. Each file has a many lines with numeric ids.
I want to have the list of numeric ids that are in nodes_to_delete but NOT in nodes_to_keep, e.g. ...
9
votes
4answers
11k views
Split Files using tar ,gz,zip or bzip2 [closed]
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 using split,cat command ...
8
votes
3answers
176 views
How to perform file / directory manipulation with user privileges in mind?
I have a server application that will be running under a system account because at any given time, it will be processing requests on behalf of any user on the system. These requests consist of ...
7
votes
3answers
4k 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 built in Windows ...
5
votes
3answers
10k 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 files are copied ...
4
votes
2answers
505 views
Python: How to move a file with unicode filename to a unicode folder
I'm having hell with moving a unicode named file between unicode named folders in a Python script under Windows...
What syntax would you use to find all files of type *.ext in a folder and move them ...
4
votes
4answers
189 views
Python newbie: trying to create a script that opens a file and replaces words
im trying to create a script that opens a file and replace every 'hola' with 'hello'.
f=open("kk.txt","w")
for line in f:
if "hola" in line:
line=line.replace('hola','hello')
f.close()
...
4
votes
13answers
6k 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
6answers
668 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 for most usages ...
3
votes
3answers
2k 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 link to download the ...
2
votes
3answers
47 views
How to insert a line in a file between two blocks of known lines (if not already inserted previously), using bash?
I wrote a bash script which can modify php.ini according to my needs.
Now I have to introduce a new change, and I cannot find a clear solution to it.
I need to modify php.ini in order to insert (if ...
2
votes
3answers
190 views
Remove bytes in the middle of a file without moving the end?
For example if i have lots of data entry's stored in a file, each with different sizes, and i have 1000 entries which makes the file like 100MB large, if i then wanted to remove an entry in the middle ...
2
votes
2answers
55 views
Using PowerShell, how can I add a file to a newly created file collection?
How do I create a blank file collection then add a file to it?
This is the pseudo-representaion.
$filelist = get-childitem "c:\somefolder\*"
$keepfiles = new-object psobject #????
$purgefiles = ...
2
votes
2answers
79 views
bash delete directories based on contents
Currently I have multiple directories
Directory1 Directory2 Directory3 Directory4
each of these directories contain files (the files are somewhat cryptic)
what i wish to do is scan files within ...
2
votes
1answer
60 views
Basic PHP file manipulation
Apologizes for such basic question, but I've gone mad debuggind the following code:
$fname = 'results.txt';
$handle = fopen($fname,"a+");
if ($handle){
$cnt = file_get_contents('./results.txt');
...
2
votes
6answers
117 views
How can I alter a file and write only the changes to disk - basically, sed (python)?
Let's say I have a file /etc/conf1
it's contents are along the lines of
option = banana
name = monkey
operation = eat
and let's say I want to replace "monkey" with "ostrich". How can I do that ...
2
votes
1answer
281 views
Adding text to start of each new line in a .txt file
I would like to add a predefined text to each new line on a text file and create a new text file with the added text. Please help.
2
votes
8answers
2k 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 ".new_ext" }' > ...
1
vote
2answers
65 views
Cannot modify file under “All Users” folder in windows 7 using C# programming
Here is my scenario,
I have an Outlook add-in which, I am writing some information into a common file through this Add-In. When I created a installable, I kept common file under "All Users"(Common ...
1
vote
1answer
94 views
Text manipulation problem - how to replace text after a known value
I have a large text file containing filenames ending in .txt
Some of the rows of the file have unwanted text after the filename extension.
I am trying to find a way to search+replace or trim the whole ...
1
vote
1answer
142 views
Lossless manipulation of JPEG in C++
I have a JPEG file on disk which is not quite normal - this JPEG file has additional rubbish data appended behind End Of Image (FFD9). This JPEG file can still be opened by JPEG viewers though.
I ...
1
vote
1answer
70 views
Update PHP file constant from C#
I need to update a constant defined in a PHP file. The constants.php file is quite simple:
<?php
$firstConstant = "abcd";
$third = "abcd";
$updatedOn = "23 April 2001";
?>
Now what I need is ...
1
vote
4answers
143 views
python to uncomment the right line
I have a file as follows:
line 1: _____
...
# for AAA
#export CONFIG = AAA_defconfig
# for BBB, BbB, Bbb, BBb3
#export CONFIG = BBB_defconfig
# for CCC, CcC, Ccc, Ccc1
#export CONFIG = ...
1
vote
2answers
721 views
Merge PDF files
I did a search and nothing really seemed to be directly related to this question. Is it possible, using Python, to merge seperate PDF files?
Assuming so, I need to extend this a little further. I ...
1
vote
2answers
160 views
How to add she bang at the beginning of all .sh files?
I want to edit she bang line #!/bin/bash line on the top of files in all the files with .sh extension how it done by scripting.
1
vote
2answers
209 views
read, edit & save config files (php)
I have two configuration files. One is ini one is php. They look like below. I need to update the database file name but the rest of the files must be unchanged. Any idea how to do so?
config.ini
; ...
1
vote
1answer
109 views
Java File manipulation
So I have an application with a JFileChooser from which I select a file to read. Then I change some words and write a new file. The problem that I am having is that when I write the new file it's ...
1
vote
2answers
659 views
Codeigniter and uploading zip files
I am currently building a backend to a site using the codeigniter framework, I have hit a bit of a problem, I needing a way to allow the user to upload a zipped folder of images, on completing the ...
1
vote
3answers
608 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 numbers before the data, ...
1
vote
5answers
398 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([a-z_/]+)"/
but I ...
1
vote
3answers
124 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 instance, processing ...
0
votes
1answer
54 views
How to edit files to change md5 hash without corrupting?
I need to duplicate various kinds of file types, change them a bit so that the original's md5 hash won't match the modified one, but keep them readable and not corrupted.
TXT files - that's obvious. ...
0
votes
2answers
79 views
Input directly to file in C++ [closed]
Note: this is homework, but it's not the main part of the assignment, just a tiny part of a much bigger assignment. So any helpful links to this or related topics would be greatly appreciated - I've ...
0
votes
1answer
69 views
Manipulating a file that is like XML
I have a file that I want to read and manipulate. It is XML like but is not an actual XML file. It does reference a DTD however. What part of the .Net framework can I use to do the above? Will the ...
0
votes
2answers
85 views
Pascal - not writing to file
Howdy, Pascal masters!
I've got a file type of custom records:
DBCell = record
Name: string[10];
Surname: string[15];
Balance:integer;
OpenDate: record
year: integer;
...
0
votes
1answer
176 views
Break a zip file into INDIVIDUAL pieces
What I am trying to do is this;
I get these zip files from clients which are 1.5gb in general. They all include pictures only. I need to make them into 100mb files to actually upload it to my server. ...
0
votes
2answers
506 views
file_get_contents returns false on existing readable file
Well, I'm starting to hate PHP. I have a file, which is perfectly readable (is_readable returns true), has 777 permission, is normally opened by fopen, but file_get_contents is returning false.
The ...
0
votes
2answers
547 views
How to add extra meta data to PNG?
is there a way to add some extra metadata to a PNG file and then retrieve it with PHP ?
like Comment filed.
0
votes
1answer
250 views
Any reason why an std::ofstream object won't close properly?
I noticed in my C++ code that anytime I close an std::ofstream object I'm unable to reopen the file I closed with std::ifstream. std::ifstream's open function will always fail.
Is there anything ...
0
votes
1answer
157 views
How to associate a 4-char OSType / NSFileHFSTypeCode with a particular UTI
I am writing a MacFuse plugin, and would like finder to use the appropriate icons & launch the appropriate app when a file is opened.
It is not possible for me to add an extension to the file, so ...
0
votes
2answers
206 views
In-memory XML manipulation
I'm trying to do a find and replace in an OpenXML word document which I've openened into a MemoryStream.
using (WordprocessingDocument _document = WordprocessingDocument.Open(_ms, true))
{
var ...
0
votes
2answers
274 views
Text Manipulation Split Classes in a Single File into mulitple Files
I used XSD.EXE to to generate a C# files from an XSD schema. Unfortunately, this tool extracts all the classes into a single allClasses.cs file.
Has anyone got a good technique(or tool) that will ...
0
votes
2answers
525 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 their example code, ...
0
votes
4answers
324 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 directory called t which ...
0
votes
2answers
58 views
Creating a 'New File Windows' behavior
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 output file already exists, but ...
0
votes
3answers
598 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 functions on php...
...