I have a license file that I need to access at runtime in order to create pdf-files. After I have created the in memory pdf, I need to call a method on that pdf to set the license, like this:
We have a situation where our application needs to process a series of files and rather than perform this function synchronously, we would like to employ multi-threading to have the workload split amo
I\'m trying do get Server 2008\'s Task Scheduler to run a C# console app which backs up data to a mapped backup drive somewhere on FastHosts network.
Here\'s what I\'m doing (sorry for the variable names, I\'m not using those in my code): File.open(\"out_file_1.txt\", \"w\") do |out_1|
I am developing a database-like application that stores a a structure containing: struct Dictionary { char *key;
I need to store about 600,000 images on a web server that uses NTFS. Am I better off storing images in 20,000-image chunks in subfolders? (Windows Server 2008)
All I can find using fopen() and fwrite() in C is to delete all contents and start writing again or append to the end of the file. What if I need to go to some offset in the file and overwrite a few b
This question already has answers here: How do I read an entire file into a std::string in C++? (23 answers)
The code chokes at fopen(): <?php ini_set(\'display_errors\',1); error_reporting(E_ALL); $fp = fopen(\"/path/to/file/some_file.txt\",\"a\") or die(\"can\'t open file\");
I\'m using fwrite() and fread() for the first time to write some data structures to disk and I have a couple of questions about best practices and proper ways of doing things.