Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
filename
- Page 1
What’s Best Way to Clear File Contents Without Deleting the File in Linux
Hardware and Software
Linux and Unix
2 Weeks Ago
by adildixi
… several approaches, including the truncate command, redirection methods, and : >
filename
tricks. Curious to know—what method do you usually rely…
Re: What’s Best Way to Clear File Contents Without Deleting the File in Linux
Hardware and Software
Linux and Unix
2 Weeks Ago
by Reverend Jim
I'm confused. Since the log file is recreated automatically what is the problem with just deleting it? But if you want to shorten it you could always open it as write (but not append) and write a null string to it.
Re: What’s Best Way to Clear File Contents Without Deleting the File in Linux
Hardware and Software
Linux and Unix
2 Weeks Ago
by Salem
I guess most people just use https://linuxconfig.org/logrotate Set it and forget it. There's no need to resort to random per file hackery (or quackery).
Re: Escape in-app browser?
Programming
Web Development
2 Months Ago
by rproffitt
Maybe you need to use the target attribute on that link. Example at https://www.w3schools.com/Tags/tryit.asp?
filename
=tryhtml_link_target
filename; bdd(o3) + 00001816 error ; 00 ; 0028 ; c0231d9e
Hardware and Software
Hardware
19 Years Ago
by Mwx
filename
; bdd(o3) + 00001816 error ; 00 ; 0028 ; c0231d9e This is the …
Filename,size etc is not set into the database when I want!
Programming
Web Development
14 Years Ago
by Puster
…upload']) && $_FILES['userfile']['size'] > 0) { $
fileName
= $_FILES['userfile']['name']; $tmpName = $_FILES['userfile']['tmp_name']; $fileSize …tmpName)); $content = addslashes($content); fclose($fp); if(!get_magic_quotes_gpc()) { $
fileName
= addslashes($
fileName
); } $query = "INSERT INTO cms_profile (name, size, …
Re: Filename,size etc is not set into the database when I want!
Programming
Web Development
14 Years Ago
by P0lT10n
Why are you using objects to connect to database ??? If you are sure that it's connecting to your database do this [CODE] $fp = fopen($tmpName, 'r'); $content = fread($fp, filesize($tmpName)); $content = mysql_real_escape_string($content); fclose($fp); $
fileName
= mysql_real_escape_string($
fileName
); [/CODE]
Re: Filename as an argument
Programming
Software Development
15 Years Ago
by masterofpuppets
… a function definition [CODE]def func(
filename
): ... # d something with
filename
[/CODE] and a function call: […usually it's something like this: [CODE]def function(
fileName
): f = open(
fileName
, "r" ) #do stuff f.close…inside the function you use the variable
fileName
which has a value "something.txt" …
Re: Filename as an argument
Programming
Software Development
15 Years Ago
by pythopian
… it's something like this: [CODE]def function(
fileName
): f = open(
fileName
, "r" ) #do stuff f.close…)[/CODE] inside the function you use the variable
fileName
which has a value "something.txt" …Python 2.5 it is [CODE]def function(
fileName
): with file(
fileName
, "r" ): #do stuff function…
FileName Checker
Programming
Web Development
14 Years Ago
by tobyana15
Hi! I am newbie in java program. All I want is to have a method that check the
filename
of the file that I want to upload, if it is correct given
filename
convention.
Re: filename from textbox
Programming
Software Development
16 Years Ago
by Nick Evan
sorry, my fault. I meant: [code=cpp] string
filename
= found + ".txt"; ofstream(
filename
.c_str()); [/code]
Re: filename from textbox
Programming
Software Development
16 Years Ago
by integer*09
…, my fault. I meant: [code=cpp] string
filename
= found + ".txt"; ofstream(
filename
.c_str()); [/code][/QUOTE] thank you very much, I…
Re: filename from textbox
Programming
Software Development
16 Years Ago
by integer*09
i have done it with the below code; [QUOTE]string
filename
= found + ".txt"; string dirname = "Log//"; string finaldir = dirname +
filename
; ofstream(finaldir.c_str());[/QUOTE]
Re: Filename as an argument
Programming
Software Development
15 Years Ago
by pythopian
You need to distinguish between a function definition [CODE]def func(
filename
): ... # d something with
filename
[/CODE] and a function call: [CODE]func("something.txt")[/CODE]
Filename as a constant?
Programming
Software Development
17 Years Ago
by teppuus
Hello, I would like to be able to declare a
filename
as a global constant (so I can change the input …
filename from textbox
Programming
Software Development
16 Years Ago
by integer*09
… like from textbox. i have the following code with the
filename
in textBox2->Text but i dont know how i…
Re: filename from textbox
Programming
Software Development
16 Years Ago
by integer*09
Hi niek_e, actually i needed to save this .txt inside a folder name Log which is a folder within the same folder of this .exe. I have tried it as below but cant work. [QUOTE]ofstream(("resultlog//")
filename
.c_str());[/QUOTE]
Filename as an argument
Programming
Software Development
15 Years Ago
by pyprog
Can I pass a string
filename
as a parameter to a function? For example, [CODE]def func("something.txt"):[/CODE] When I do this, it says that the syntax is invalid. Is there a proper way to do it or it is simply not done?
Re: Add Path and Filename Hyperlink
Programming
Software Development
12 Years Ago
by tinstaafl
…some changes need to be made: Public Function GetFullPath(ByVal
Filename
As String, ByVal RootFolder As String) As String() …GetFullPath = Directory.GetFiles(RootFolder,
Filename
, SearchOption.AllDirectories) End Function Then to add the links something…
Re: display pdf in browser-$filename
Programming
Web Development
12 Years Ago
by pritaeas
> $
filename
=('../'.'$orderdate'.'_'.'$outlet'.'.pdf'); Variables are NOT PARSED within single quotes. Try this: $
filename
=("../{$orderdate}_{$outlet}.pdf"); Apart from that, you never execute the query on line 9. You should use `mysql_query` and `mysql_fetch_array` to get the data you need.
Re: FIleName in Text box
Programming
Software Development
11 Years Ago
by ss125
If u are using c# in web app, Use fileupload tool and get the path using fileupload1.
filename
() if it is a windows application try openFileDialog1.ShowDialog(); string filePath = openFileDialog1.
FileName
; Hope this helps. Have a happy coding.
Display Uploaded FileName in Table
Programming
Web Development
12 Years Ago
by PriteshP23
…OK. if ($virus_msg != 'OK') { unlink($upload_dir.$
filename
); $result_msg = $
filename
." : ".FILE_VIRUS_AFFECTED; $result_msg = '<…picture_error').innerHTML = '".$result_msg."';"; } if($
filename
!= '') { echo "parDoc.getElementById('img_prev').innerHTML …
how break from find / -wholename= 'somename'>>filename | tail --f filename
Programming
Software Development
17 Years Ago
by bilalb1
… using is find / -wholename= 'somename'>>
filename
| tail --f
filename
my program doesn't continue until users breaks this… unable to find anynew file and append it to
filename
after some time interval.... my english is not very… is written to it ...if anything is written to
filename
it is displayed ...if nothing gets written to file…
Re: how break from find / -wholename= 'somename'>>filename | tail --f filename
Programming
Software Development
17 Years Ago
by bilalb1
… the reply... i checked find / -wholename='somename' -print | tee -a
filename
but i am getting an error which is "unexpected… EOF encountered ". does the file
filename
has to contain something before i execute this command ??.... i…
Re: how break from find / -wholename= 'somename'>>filename | tail --f filename
Programming
Software Development
17 Years Ago
by masijade
… same effect as doing [code] echo "" | tee -a
filename
[/code] which as far as I know should not produce…] #!/bin/sh var="this is an unfinished string cat
filename
# never gets executed as the shell still considers this a…
Re: insert filename into database with uploading file with plupload
Programming
Web Development
12 Years Ago
by daniel36
…; 2 && file_exists($targetDir . DIRECTORY_SEPARATOR . $
fileName
)) { $ext = strrpos($
fileName
, '.'); $fileName_a = substr($
fileName
, 0, $ext); $fileName_b = substr($
fileName
, $ext); $count = 1; while (file_exists($targetDir…
Re: Display Uploaded FileName in Table
Programming
Web Development
12 Years Ago
by IIM
…innerHTML = '".$result_msg."';"; } if($
filename
!= '') { echo "parDoc.getElementById('img_prev').innerHTML… = '<img src=\'$preview_url$
filename
\' id=\'preview_picture_tag\' name=\'preview_picture_tag\' />';"…upload file and then return
filename
as response of ajax call…
Re: Random filename for image uploads
Programming
Web Development
12 Years Ago
by broj1
… then you do not use that variable on line 62: $
filename
= "../../../../../../../../bloggbilder/". $_FILES['file']['name']; which is strange since…), 5, '0', STR_PAD_LEFT); // get rid of slashes and add postfix $
filename
= stripslashes($_FILES['file']['name']) . $postfix; // handle the extension ... // use the…
Re: how break from find / -wholename= 'somename'>>filename | tail --f filename
Programming
Software Development
17 Years Ago
by masijade
then do [code] find / -wholename='somename' -print | tee -a
filename
[/code] Edit: Although I am not familiar with "wholename" argument, I assume your find options are actually something different (and correct).
I'm somehow messing up opening a file and making a c-style filename
Programming
Software Development
16 Years Ago
by shipeshipaca
…(PublishingCompany), m_SeriesNumber(SeriesNumber), m_NumPages(NumPages), m_CopyrightYear(CopyrightYear) { fstream filehandle; string
filename
=m_Title+".txt"; char m_filename[80]; for(int i…=0;i<
filename
.size();++i) { m_filename[i]=
filename
[i]; } cout<<m_filename; filehandle.open(…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC