Jump to content

fileClear X[ مساعدة ]X


KillerX

Recommended Posts

السلام عليكم ورحمه الله وبركاتة

عندي استفسار

ازاي امسح كلام من ملف ؟؟؟؟؟

بدون ما انشا ملف جديد

مثال

عندي الملف دا

هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه

لنعتبر ان اسم الملف

HAHA.txt

ازاي امسح اللي فيه بدون ما انشا واحد جديد بنفس الاسم

وشكرا

Link to comment
14 minutes ago, Master_MTA said:
function fileClear( filePath )
	if( filePath and type( filePath ) == 'string' ) then
		file = fileOpen( filePath )
		if( not file ) then
			return false
		end				
		fileSetPos( file , 0 )
		fileWrite( file , string.rep( " " , fileGetSize( file ) ) )
		fileClose( file )
	end
end

مشششششششششششششششششششششششششششكور يا قمر

 

  • Like 1
Link to comment
6 hours ago, Master_MTA said:

العفو يا عسل بالتوفيق

معلش طلب اخير

كودي بيمسح الملف بس بيكتب فية مسافات

ودا هياثر كتير في فكرتي اللي عايز اسويها في سكريبت تاني

فممكن تقولي ازاي امسحوا بدون مسافات ؟؟؟

وشكرا يا قمر 

Link to comment
	function fileClear ( fileName )
	
	if type ( fileName ) ~= "string" then return false end
	
	local sourceFile = fileOpen ( fileName )
	
	if not sourceFile then return false end
  
  	fileSetPos ( sourceFile , 0 ) 

	fileWrite( sourceFile , string.rep( "\r" , fileGetSize( sourceFile ) ) )
	
	fileClose( sourceFile )	
	
		return true
	end

	-- ex

	fileClear ( "test.txt" )

 

Edited by Abdul KariM
  • Thanks 1
Link to comment
31 minutes ago, Abdul KariM said:

	function fileClear ( fileName )
	
	if type ( fileName ) ~= "string" then return false end
	
	local sourceFile = fileOpen ( fileName )
	
	if not sourceFile then return false end
  
  	fileSetPos ( sourceFile , 0 ) 

	fileWrite( sourceFile , string.rep( "\r" , fileGetSize( sourceFile ) ) )
	
	fileClose( sourceFile )	
	
		return true
	end

	-- ex

	fileClear ( "test.txt" )

 

طلع العيب مني معقد امها وعادي يكون في مسافات

+

مشكور جدا طريقتك عجبتني

  • Like 1
Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...