active questions tagged files - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T22:22:37Z http://stackoverflow.com/feeds/tag/files http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1822332/how-to-sniff-the-number-of-records-in-a-binary-file-before-reading-into-an-array 0 How to sniff the number of records in a binary file before reading into an array in the C programming language? Chris_45 2009-11-30T20:55:43Z 2009-11-30T21:01:10Z <p>How do I tell in a better way how many records there are in a binary file before I open up the file and read the records into an array for example?</p> <pre><code>MyFile = fopen("DATA.dat", "rb"); i = 0; while (feof(MyFile) == 0) { fread(&amp;tempReadingRecord,sizeof(tempReadingRecord), 1, file); if (feof(MyFile) == 0 { i++; } } fclose(MyFile); } printf("%d", i); /* does work to find out how many records but optimal? */ </code></pre> http://stackoverflow.com/questions/1821704/ftp-from-windows-to-linux-using-filezilla-causes-doubling-of-file-sizes 0 FTP from windows to linux using filezilla causes doubling of file sizes??? [closed] Cneg 2009-11-30T18:58:31Z 2009-11-30T19:17:04Z <p>Running filezilla 3.3.0.1 (and slightly older versions exhibit this behavior as well) to Red Hat Enterprise 5x with filezilla server, we are getting doubling of text files on overwrite. It seems to affect php, js, html files but maybe not binary files although that's not thoroughly tested. We've looked at the settings on the client and found one we thought was the problem which was 'allow resume of ascii files' which states in the client that if ticked can cause problems with line endings differing from platforms, but we've unticked this option.</p> <p>so here's what happens:</p> <p>We open the client, connect to ftp server. Upload a local file and choose 'overwrite' of remote copy. Filesize should change slightly (should slightly increase, ex: 117kB -> 118kB), instead it does not refresh the filesize. You hit the manual refresh button and suddenly the remote copy's filesize is reported to be doubled or more (ex: 275kB). What the heck is going on??</p> <p>When we redownloaded some of these files it was as if a concatenation was happening (appending random extra contents). Obviously this will not fly to micromanage files- our whole system could be screwed up completely by this. Please help!! Is this a permissions/ownership issue or something really weird happening with either the filezilla client or server?</p> http://stackoverflow.com/questions/1821789/reading-from-a-textfile-into-an-array-into-the-c-programming-language 0 Reading from a textfile into an array into the C programming language Chris_45 2009-11-30T19:13:38Z 2009-11-30T19:16:42Z <p>How do I read into an array a string with space in it, delimited with semicolons from a textfile in the C programming language?</p> <pre><code>***from textfile*** "My Record; My Second Record; My Third" </code></pre> <p>. . . </p> <pre><code> fopen ... for(i = 0; i &lt; 3; i++) { fscanf_s(myFile, "%s", myRecords[i].title); /* this want read the records */ } fclose... </code></pre> http://stackoverflow.com/questions/1818238/copying-text-to-a-character-array-from-a-text-file-in-c 0 copying text to a character array from a text file in C? novemberdays 2009-11-30T07:00:14Z 2009-11-30T07:22:02Z <p>Hey there, How do I go about copying text inside a text file into a multidimensional character array?</p> <p>supposing the text file( text_file.txt) contained</p> <blockquote> <p>this is the first line</p> <p>this is the second line</p> <p>this is the third line</p> </blockquote> <pre><code>#include &lt;stdio.h&gt; int main(void){ FILE *f; f=fopen("text_file.txt","r"); if (f==NULL){ printf("invalid!"); return 1; } else { printf("successful"); } char copied_text[80][80]; while (!feof(f)){ int i=0,j=0; fgets(copied_text[i][j],"%s",f); i++; } return 0; } </code></pre> <p>-thank you.</p> http://stackoverflow.com/questions/1814504/how-do-i-list-just-the-files-that-would-be-commited 2 How do I list just the files that would be commited? gene 2009-11-29T03:00:52Z 2009-11-29T21:58:54Z <p>Hello,</p> <p>Is there any way to get a list of files that will be committed when I type the following?</p> <pre><code>git commit -m "my changes" </code></pre> <p>git status lists too much. I could strip out all the words, but I'd rather not. And I don't want to be told about untracked files.</p> <p>I've tried </p> <pre><code>git ls-files -md </code></pre> <p>but that doesn't show files that have been recently added, but not yet committed.</p> <p>I'm looking for the same output you'd get from </p> <pre><code>svn status -q </code></pre> <p>For example $ svn status -q<br> A file.py<br> M dir/database.py<br> M start.py </p> http://stackoverflow.com/questions/1815672/nt-server-deleting-files-takes-ages 0 NT Server: deleting files takes ages [closed] Fuxi 2009-11-29T14:29:24Z 2009-11-29T14:35:37Z <p>hi all,</p> <p>i'm running an NT Server - when trying to delete eg. just one file - it takes several minutes (!!) until the file gets deleted. i'm only getting the deleting-dialog but nothing happens.</p> <p>any ideas what could be wrong?</p> <p>thx</p> http://stackoverflow.com/questions/98610/how-can-i-get-eclipse-to-show-files 9 How can I get Eclipse to show .* files? jodonnell 2008-09-19T01:23:28Z 2009-11-29T02:12:56Z <p>By default, Eclipse won't show my .htaccess file that I maintain in my project. It just shows an empty folder in the Package Viewer tree. How can I get it to show up? No obvious preferences.</p> http://stackoverflow.com/questions/1799716/renaming-files-to-remove-periods-in-powershell 2 Renaming files to remove periods in Powershell fenster 2009-11-25T20:24:20Z 2009-11-28T03:59:00Z <p>I have a list of files like this:<br> Test.(file1)[text].txt<br> Test.(file2)[text].txt<br> Test.(file3)[text].txt </p> <p>I need to remove any "()","[]" and any ".", replace them spaces without changing the file extension. I've tried the following but it's not working:</p> <pre><code>dir C:\scratch\*.txt | % { Rename-Item $_ ($_.basename -replace "\(", " "` -replace "\)", " "` -replace "\[", " "` -replace "\]", " "` -replace ".", " ")} </code></pre> <p>Ideally the file name should end up in the format "Test file1 text.txt"</p> http://stackoverflow.com/questions/1065993/has-windows-7-fixed-the-255-character-file-path-limit 3 Has Windows 7 Fixed the 255 Character File Path Limit? The Matt 2009-06-30T20:52:00Z 2009-11-28T00:59:42Z <p>As I understand it, the limitation of 255 characters in a file path is a Windows limitation. What is the reasoning for this? If so, has this been resolved in Windows 7?</p> <p>In our continuous integration practices, we often have deeply nested project structures and it would be extremely useful to be able to go beyond 255 characters. Right now we are somewhat forced to structure our projects in such a way as to not hit this artificial ceiling.</p> http://stackoverflow.com/questions/1808039/file-modification-time-seconds-on-unix 0 File modification time (seconds) on Unix ExpertNoob1 2009-11-27T10:47:53Z 2009-11-27T11:09:33Z <p>Hi there,</p> <p>On Unix, is there a command to display a file's modification time, precise to the second?</p> <p>On Linux this is easily done with a "stat -c %y", which returns something like <code>2009-11-27 11:36:06.000000000 +0100</code>. I found no equivalent on Unix.</p> http://stackoverflow.com/questions/1801071/wpf-where-can-i-find-some-window-layout-ideas-examples-and-resource-files-that 1 WPF - where can I find some window layout ideas/examples and resource files that will make my application look better Jim Beam 2009-11-26T01:24:18Z 2009-11-26T01:47:43Z <p>I enjoy working with WPF but I need a little more of "designer's touch" to my applications. I have been unable to find a good resource for WPF layout examples and color schemes along with the corresponding resource files.Are there any good resources out there to help developers make their applications really "pop".</p> http://stackoverflow.com/questions/1798813/cant-delete-file-c 0 Can't delete file - c# toms 2009-11-25T18:00:06Z 2009-11-25T18:36:00Z <p>Hey</p> <p>Why can't I delete files after downloading file </p> <p>I get error:</p> <p>file 'exfile.jpgg' because it is being used by another process.</p> <p>Edit: (Here is more code)</p> <pre><code> string file_name = "pic.jpg" WebClient client = new WebClient(); client.DownloadFile("http://picture.com/pic.jpg", file_name); client.Dispose(); client = null; pictureBox1.Image = Image.FromFile(File_Name); pictureBox1.Image = null; FileInfo MyFile = new FileInfo(File_Name); MyFile.Delete(); </code></pre> http://stackoverflow.com/questions/1796628/php-files-file-loop-upload 0 PHP $_FILES file loop upload JadaBharata 2009-11-25T12:32:49Z 2009-11-25T12:41:17Z <p>I want to insert files into mysql from php function. The files that need to be uploaded are already present in the server. So I don't want to use the upload form. I want to loop through the directory and get the files info into $_FILES.</p> <p>Please let me know how will I get the $file into $_FILES and then call upload.</p> <p>$dir_handle = @opendir($path) or die("Unable to open folder");</p> <p>while (false !== ($file = readdir($dir_handle))) {</p> <p>echo "$file";</p> <p>}</p> <p>Thanks Jad.</p> http://stackoverflow.com/questions/120865/how-do-i-get-files-in-my-own-file-format-to-have-its-own-dynamic-icon 6 How do I get files in my own file format to have its own dynamic icon? Epaga 2008-09-23T13:06:57Z 2009-11-25T09:22:49Z <p>Our application has a file format similar to the OpenDocument file format (see <a href="http://en.wikipedia.org/wiki/OpenDocument" rel="nofollow">http://en.wikipedia.org/wiki/OpenDocument</a>) - i.e. zipped with a manifest file, a thumbnail image, etc.</p> <p>I notice that OpenOffice files have a preview image of the Open Office file as their icons, both in Windows and in Linux. Is there some way to accomplish this for our files: i.e. I want a dynamic icon based on the internal thumbnail.png?</p> <p><strong>Edit 1</strong> Wow, thanks for all the quick answers. <a href="http://library.gnome.org/devel/integration-guide/stable/thumbnailer.html.en" rel="nofollow">Thumbnailer</a> looks great for the GNOME world. Windows I'll be looking into those links, thanks. As for the comment question: programmatically OR via our installer.</p> <p><strong>Edit 2</strong> Oh, forgot Mac. How about on the Mac? (Sorry Mac lovers!) Also are there any links or info for how OpenOffice does their IconHandler stuff - since ours would be very similar?</p> http://stackoverflow.com/questions/1795381/open-file-from-memory-stream 2 Open "file" from memory stream? Petr 2009-11-25T08:08:35Z 2009-11-25T08:17:22Z <p>Hi, I am wondering if its even possible. I am returning files from database (blob) and have them as bytes array. I would like to let the user to show the data content by clicking on associated object - something like opening in the WebBrowser which automatically selects the appropriate program..but I understand I would need to save the file to the disk. Is there any other solution which would work only from streams/byte arrays?</p> http://stackoverflow.com/questions/324045/windows-temporary-files-behaviour-are-they-deleted-by-the-system 8 Windows temporary files behaviour - are they deleted by the system? Bogdan Gavril 2008-11-27T15:34:21Z 2009-11-24T23:26:00Z <p>Using the .net framework you have the option to create temporary files with</p> <pre><code>Path.GetTempFileName(); </code></pre> <p>The MSDN doesn't tell us what happens to temporary files. I remember reading somewhere that they are deleted by the OS when it gets a restart. Is this true?</p> <p>If the files aren't deleted by the OS, why are they called temporary? They are normal files in a normal directory. </p> http://stackoverflow.com/questions/1787881/convert-any-file-to-csv-formate -2 convert any file to .csv formate [closed] Lalit Dhake 2009-11-24T04:55:08Z 2009-11-24T05:01:25Z <p>Hi all,</p> <p>I have many files, each have different extensions. I want to convert those into .csv format, using C#. What code I have to write?</p> http://stackoverflow.com/questions/582268/jquery-read-write-to-file 1 jquery read/write to file marc-andre menard 2009-02-24T15:49:30Z 2009-11-23T14:44:46Z <p>Is there a way to get jquery to get information to and from a file...</p> <p>let say i ask a question and i like to get the answer in a file.. to keep track..</p> <p>is it possible? how?</p> http://stackoverflow.com/questions/1780504/how-can-i-make-my-batch-script-for-deletion-of-old-files-work 0 How can I make my batch script for deletion of old files work? Hellnar 2009-11-23T00:08:18Z 2009-11-23T14:31:07Z <p>Inside a folder (say c:\test) I want to delete the oldest file if the number of files are over 21.</p> <p>This is what I came up with, issue is that it one time deletes the oldest file, second run it does nothing and deletes the oldest for third, continues like that. Also it doesn't care if the file amount is lower than 21, deletes even if it is lower.</p> <p>Here is the code:</p> <pre><code>SET BACKUPDIR=C:\test SET countfiles=dir BACKUPDIR /b | find /v /c "::" if countfiles GTR 21 ( FOR /F %%i IN ('DIR /B /O-D %BACKUPDIR%') DO SET OLDEST=%%i DEL %BACKUPDIR%\%OLDEST% ) </code></pre> http://stackoverflow.com/questions/1091107/how-to-join-filesystem-path-strings-in-php 0 How to join filesystem path strings in php? karlthorwald 2009-07-07T08:52:09Z 2009-11-23T12:52:32Z <p>Is there a builtin function in php to intelligently join path strings?</p> <p>Like <code>path_join("abc/de/","/fg/x.php")</code> which should return <code>"abc/de/fg/x.php"</code>, but <code>path_join("abc/de","fg/x.php")</code> should have the same result</p> <p>If not, is there a class availabel. Could also be valuable for splitting paths or removing parts of them. If you have written something maybe you can share your code here?</p> <p>It is ok to always use "/", I am coding for linux only.</p> <p>In python there is os.path.join which is great.</p> http://stackoverflow.com/questions/1761324/how-to-show-mpp-files-in-my-iphone-application 0 how to show *.mpp files in my iphone application? Zach 2009-11-19T06:42:29Z 2009-11-23T12:37:55Z <p>Hi,</p> <p>I have a problem in showing *.mpp (microsoft project files) in my app. I thought of showing in image format but i dont know how to convert it into image format. or is there any other way to view mpp files. </p> <p>thanks in advance</p> http://stackoverflow.com/questions/1780324/java-write-an-array-into-a-text-file 0 Java: write an array into a text file dedalo 2009-11-22T22:52:27Z 2009-11-23T00:54:02Z <p>Hi,</p> <p>I'm trying to write a matrix into a text file. In order to do that I'd like to know how to write an array into a line in the text file.</p> <p>I'll give an example:</p> <p>int [] array = {1 2 3 4};</p> <p>I want to have this array in text file in the format:</p> <pre><code>1 2 3 4 </code></pre> <p>and not in the format:</p> <pre><code>1 2 3 4 </code></pre> <p>Can you help me with that?</p> <p>Thanks a lot</p> http://stackoverflow.com/questions/105039/how-do-i-open-a-gz-gzip-file 0 How do I open a .gz gzip file? [closed] Zack Peterson 2008-09-19T20:01:41Z 2009-11-22T21:55:51Z <p>I've been given a file with .gz extension. It's aparently a gzip (<a href="http://en.wikipedia.org/wiki/Gzip" rel="nofollow">GNU zip</a>) compressed file.</p> <p>What free Windows utility can I use to open it?</p> http://stackoverflow.com/questions/1778068/how-to-send-and-receive-files-from-server-in-objc 0 how to send and receive files from server in ObjC? Biranchi 2009-11-22T07:10:42Z 2009-11-22T10:38:17Z <p>Hi all,</p> <p>How to send and reveice files from a ftp server ?</p> <p>If any sample project or example is there ,then its easy to understand.</p> <p>Thanks</p> http://stackoverflow.com/questions/1777495/batch-program-to-delete-files-with-different-extentions 0 Batch program to delete files with different extentions Dusty 2009-11-22T01:43:18Z 2009-11-22T01:50:26Z <p>Hi</p> <p>I would like to know how to write a batch file that will delete files with extensions identified by the user, so the code will need a user input parameter capability. Anyone know of an existing n or how I should approach this?</p> <p>Thanks, Dusty.</p> http://stackoverflow.com/questions/1755206/what-are-these-wcf-service-reference-files 1 What are these WCF service reference files Martin 2009-11-18T10:55:15Z 2009-11-20T18:43:45Z <p>When I add a WCF service reference in Visual Studio 2008, a directory named Service Reference\ServiceReferenceNamespace is created. </p> <p>In this directory, there's files named Service.xsd, Service1.xsd, Service2.xsd, Service3.xsd and Service4.xsd. The files rae not duplicates - the different files defines different types and elements. When I first created the service refernece, there was just one file but more Service*-files have been added when I've added more DataContract and OperationContracts.</p> <p>It looks a bit strange that 5 different files are generated and not just one. If I delete the service reference (and hence the directory) and then add it again, the same files are added again.</p> <p>Can anyone explain why several files are created and not just one?</p> http://stackoverflow.com/questions/1768429/getting-word-count-for-all-files-within-a-folder 0 Getting word count for all files within a folder Lavanya ks 2009-11-20T05:00:25Z 2009-11-20T05:27:46Z <p>I need to find word count for all of the files within a folder.</p> <p>Here is the code I've come up with so far:</p> <pre><code>$f="../mts/sites/default/files/test.doc"; // count words $numWords = str_word_count($str)/11; echo "This file have ". $numWords . " words"; </code></pre> <p>This will count the words within a single file, how would I go about counting the words for all files within a given folder?</p> http://stackoverflow.com/questions/1371025/serving-files-from-sql-server-through-zend 0 Serving files from SQL Server through Zend illvm 2009-09-03T01:32:10Z 2009-11-19T22:00:02Z <p>I am storing files into an image field in SQL server storing the string in hex after converting into using:</p> <pre><code>unpack("H*hex", $datastring); </code></pre> <p>If I read from the database and write to a file, then open the file locally I can open it up just fine. But if I try to send the file as an attachment to the browser the file becomes corrupted and unreadable. Currently, the files in question are PDF and MSWord documents.</p> <p>I am setting content-type to the appropriate MIME type for the files and setting content-disposition to attachment. I've tried various ways of streaming the file including dumping the string directly from the database and writing first to a file then reading the file (either line by line or with readfile()). </p> <p>I am using a slightly customized version of the Zend framework, but I'm not sure if that is causing any issues. What should I do to send files to the browser?</p> http://stackoverflow.com/questions/1575286/delphi-get-what-files-are-opened-by-an-application 2 Delphi - get what files are opened by an application Chris 2009-10-15T21:46:04Z 2009-11-19T15:59:07Z <p>How can I get the list of opened files by an application, using Delphi? For example what files are opened by winword.exe</p> http://stackoverflow.com/questions/1761607/what-is-the-fastest-hash-algorithm-to-check-if-two-files-are-equal 3 What is the fastest hash algorithm to check if two files are equal? eflles 2009-11-19T07:52:54Z 2009-11-19T08:14:27Z <p>What is the fastest way to create a hash function which will be used to check if two files are equal?</p> <p>Security is not very important.</p> <p>Edit: I am sending a file over a network connection, and will be sure that the file on both sides are equal</p>