Help on program to print filenames and time stamps Programming Software Development by chrisfrmatl …fnmatch("*c", dirEntry->d_name,0)) == 0) fileNames[fileCount++] = dirEntry->d_name ; } closedir(dp); if… for (i = 0; i < fileCount; i++) monitorFile (fileNames[i]); } /****************************************************************/ monitorFile (char* fileName) /* Process a single file… Re: Help on program to print filenames and time stamps Programming Software Development by chrisfrmatl [QUOTE=jephthah;1216077]Okay... that's nice. did you have a question?[/QUOTE] LOL.. Yes.. SOrry.. It keep printing a lot of junk instead of filenames.. And then sometimes it prints the filenames... I'm having toruble figuring out why... Re: Help on program to print filenames and time stamps Programming Software Development by jephthah probably line 66: [icode] fileNames[fileCount++] = dirEntry->d_name ;[/icode] you can't just assign strings like that. use strcpy() or something similar. could be other problems, that just jumped out at me. Re: Help on program to print filenames and time stamps Programming Software Development by Salem [URL="http://cboard.cprogramming.com/c-programming/126761-program-match-filenames-print-stat.html"]More cross-posting buffoonery[/URL] Changing filenames from Greeklish => Greek (subprocess complain) Programming Software Development by nagia.retsina … message happened when i tried to rename one of my filenames from its greeklish name to greek characters. files.py is… downlaod files from my server. But i wish to present filenames in Greek and not in Greeklish http://superhost.gr/?page…. What can i do to make pth script accept greek filenames too? Why does subprocess is complaining? File handling - reading filenames Programming Software Development by bol0gna My file directory is full of filenames with "male" and "female" being part … be able to say... if femaleDataSets are found, print their filenames - just to show that I am reading the correct files… Re: File handling - reading filenames Programming Software Development by vegaseat …. In the original post bol0gna wants to sort on the filenames, while your code is actually searching the content of each…, you are so right. He only wants to look at filenames, so kudos to you. OpenFileDialog.Filenames Programming Software Development by inisca [CODE] OpenFileDialog dlg; richTextBox1->Text=dlg.FileNames; [/CODE] Can someone tell me what am I doing wrong? … know that richTextBox1>Text is System::String^ and dlg.FileNames is cli::array. How can I make a conversion or… Re: OpenFileDialog.Filenames Programming Software Development by kvprajapati [b]>I need dg->FileNames[/b] [code] richTextBox1->Text=String::Concat(dg->FileNames); [/code] FreePascal filenames to text files Programming Software Development by goldfield Hello all, I am attempting to write a program that takes the filenames of a number of files in a folder and sends the filenames to a text file. I am using freepascal compiler, can anyone help me? fixing filenames using python Programming Software Development by krystosan I have a list of filenames fileNames = ['Aamde Mustafa Marhba (mr-jatt.com).mp3', 'Aaj Me Peeni (… Re: Changing filenames from Greeklish => Greek (subprocess complain) Programming Software Development by nagia.retsina … the snippet of files.py responsible to print the greek filenames: for row in data: (url, hits, host, lastvisit) = row shorturl… Re: File handling - reading filenames Programming Software Development by bol0gna … else: print "male"[/CODE] example of a few filenames: BMale_22.b_app EMBfemale20-2neutral.b_app EMIfemale26neutral.b_app EMImale23-2neutral.b_app… Re: File handling - reading filenames Programming Software Development by The_Kernel …. In the original post bol0gna wants to sort on the filenames, while your code is actually searching the content of each… Re: How to filter filenames in ComboBox Programming Software Development by Reverend Jim … New ArrayList Dim opt As RegexOptions = RegexOptions.IgnoreCase 'Add all filenames starting with CE For Each file As String In Files…) End If Next ComboBox1.DataSource = fltr fltr.Clear() 'Add all filenames starting with BE For Each file As String In Files… mod_rewrite lowercase filenames Hardware and Software Linux and Unix by bsmith Hi Trying to use mod_rewrite to convert all filenames in a subdirectory to lowercase (they may also include other … O/P:filenames,lastmodified date,and the lastline Programming Software Development by gamegod007 The task is i have a folder which has some text files i need to write a shell script which takes this folder as input and in the out put it should give me the filenames,lastmodified date,and the lastline in each particular file help me asap Date/Time Stamped and Numbered filenames when saving to jpeg? Programming Software Development by mench2 … code I have uses GUID to generate "random" filenames on save. For instance: ff8514d389a041649fd8b925a32f2b51.jpg e1c938560fc1464ab2138065fc4661d3.jpg Instead I… Unique filenames with numbers appended to end of filename Programming Software Development by Sandhya212 Hi, I would need to create unique filenames appended by the iteration number. For eg. [CODE]for( i=… Re: Unique filenames with numbers appended to end of filename Programming Software Development by jonsca … of your loop to clear it out (otherwise all the filenames will get stuck together as you go). Also, remember that… get filenames from all dirs Programming Software Development by xellos … $in or die "$in $!";[/CODE] it gets the filenames that are in the same dir as script. but if… Problem with ifstream filenames Programming Software Development by mjacqu4 …? I would really like to be able to keep the filenames if I can. Thanks, Matt Re: Problem with ifstream filenames Programming Software Development by mjacqu4 … and not the file itself.[/QUOTE] Yeah, it was the filenames. While I was looking through the folder for the 1000th… Retrieving the filenames from subdiretories Programming Software Development by dabasank I need to retrieve all the filenames ending with .xml extension from all the subdirectories present in a directory and copy those names into a new .xml file. How to filter filenames in ComboBox Programming Software Development by tucker046 … help! Here's the code im using to pull the filenames from my C:\ drive but i need to filter out… Re: trouble with filenames using lsof, sed, awk... Programming Software Development by Fest3er …) deletes everything but the filename. Awk then prints the quoted filenames to the output file. To make your life even easier… tosses the first line, and prints the rest of the filenames as cp() commands, dumping the output to a file on… Re: Generating unique filenames Programming Software Development by Elmo_loves_you … files created will constantly increment by one each time ... making filenames unque :) Please could someone help point me in the right… Re: Apostrophe in filenames Programming Software Development by TrustyTony … single line with \n etc escape characters, which means some filenames are not OK, if you are in Windows environment and… Re: Help on program to print filenames and time stamps Programming Software Development by jephthah Okay... that's nice. did you have a question? Re: Help on program to print filenames and time stamps Programming Software Development by chrisfrmatl Hmmmm.. Now its saying segmentation fault