file

recursively add file extension to all files

I have a few directories and sub-directories containing files with no file extension. I want to add .jpg to all the files contained within these directories. I've seen bash scripts for changing the file extension but not for just adding one. It also needs to be recursive, can someone help please? ...

How to transfer files from one computer to another over the network using Java?

I need a simple application, preferably a cross-platform one, that enables sending of files between two computers. It just need to accept and send the files, and show a progress bar. What applications could I use or how could I write one? ...

File logger in C#

I am looking for a .net class to deal with logging various information to a file. The logger should have timestamps, categories for the logged data (to be able to differentiate between notificiation and errors), severity levels for errors, to be able to split the log file after it exceeds a certain size. ...

How-to do unit-testing of methods involving file input output?

Hello, I'm using C++Test from Parasoft for unit testing C++ code. I came across the following problem. I have a function similar to the next one (pseudocode): bool LoadFileToMem(const std::string& rStrFileName) { if( openfile(rStrFileName) == successfull ) { if( get_file_size() == successfull ) { i...

Post file directly from byte array in ASP.net.

How do you replicate a traditional POST form (file post) in code, the end goal is to stream a byte array as the file into the posted form, the example below is the form that I am trying to replicate in code. <form method="POST" action="http://export.writer.zoho.com/remotedoc.im?apikey=[apikey]&amp;output=editor" enctype="multipart/f...

how to insert contents of a file into a blob column in a table using sqlite3

Hi everyone i need to insert the contents of a file into a blob column in sqlite3 but the thing is that i just wanna know whether it is possible by command line statement regards shroff ...

Converting binary file to Base64 string.

Hi, I need to convert uploaded binary files to base64 string format on the fly. I'm using ASP, Vbscript. Using Midori's component for base64 conversion. For small size files (<20K) the performance is okay. But when it exceeds 75 or 100K, its totally lost. Is there any efficient way to convert big binary files (2MB) to base64 string form...

Counting the number of files in a directory using C

How can I count the number of files in a directory using C on linux platform. ...

git: Retrieve a single file from a repository

What is the most efficient mechanism (in respect to data transferred and disk space used) to get the contents of a single file from a remote git repository? So far I've managed to come up with: git clone --no-checkout --depth 1 [email protected]:foo/bar.git && cd bar && git show HEAD:path/to/file.txt This still seems overkill. What abo...

Process file with ActiveX on client machine or upload file to server

Hi, I have question about running activex on client machine to process file then send data to the server vs upload file to the server then have server process it. (assuming a text/excel files) which is a better option? performance, security....anything..... thanks ...

Should I write a temp file to a temp dir? or write a temp file to the final directory?

When an application saves a file, a typical model is to save the file to a temporary location, then move the temporary file to the final location. In some cases that "move" becomes "replace". In pseudo code: Save temp file; if final file exists delete final file; move temp file to final filename; There's a window in there where ...

Using relative directory path in Java

Hello, I am trying to use a relative path to locate an executable file within a Java class instead of hard-coded lines which worked, but using something like: final static String directory = "../../../ggla/samples/obj/linux_x86" fails... what is the proper way of using a relative path in Java? ...

Must a secure cryptographic signature reside outside of the file it refers to?

I'm programming a pet project in Python, and it involves users A & B interacting over network, attempting to insure that each has a local copy of the same file from user C. The idea is that C gives each a file that has been digitally signed. A & B trade the digital signatures they have, and check it out on their own copy. If the signatu...

Silverlight Image in Listbox

I have a listbox with a data template. The problem is that it expects the source to be a string. The string I have is a uri of an image inside the xap file. So it would be uri( xxx, uri.relative) How do I get it to look inside the xap file for the image since I can only use a string value? ListBox.ItemTemplate DataTemplate StackPanel Or...

Read Unicode Files

Hello, i have a problem reading and using the content from unicode files . i am working on a unicode release build, and i am trying to read the content from an unicode file but the data has strange characters and i can't seem to find a way to convert data to ASCII . im using fgets, tried fgetws,WideCharToMultiByte and alot of function...

VS2008: Disable asking whether to reload files changed outside the IDE

Hi, I have a Visual Studio 2008 project where some code files are generated with each build (a parser, integrated via MSBuild aka editing the *.csproj file). VS does not know about the generated nature of these files (i.e. they are not the result of a "Custom Tool). So they "change" with every build, naturally. And VS2008 asks me after...

Re-Initializing "ThisWorkbook.Path"

First, thanks to those of you who gave me the suggestion on using "ThisWorkbook.Path". It worked like a charm. However, my code walks through seven (7) workbooks and when using "ThisWorkbook.Path" I can not re-initialize the "This.Workbook". Let me elaborate. This is the workbook where the Macro resides: Workbooks("Financial_Aggrega...

How can I lock shared files on a linux network in Perl?

I have mounted a cifs file on two Linux machines. I have a Perl script which can modify the shared file. How do we lock the file over network in this scenario? ...

Invalid File path error in asp.net

I use a simple FileUpload control to select a excel file, retrieve the data and store it to db. When i try to upload after selecting the file i get this error. But file path is correct. "FilePath" is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server on which the file ...

Copying files from one directory to another in Java

Hello, I want to copy files from one directory to another (subdirectory) using Java. I have a directory, dir, with text files. I iterate over the first 20 files in dir, and want to copy them to another directory in the dir directory, which I have created right before the iteration. In the code, I want to copy the review (which represent...