KillerX Posted February 24, 2019 Share Posted February 24, 2019 السلام عليكم ورحمه الله وبركاتة عندي استفسار ازاي امسح كلام من ملف ؟؟؟؟؟ بدون ما انشا ملف جديد مثال عندي الملف دا هههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههههه لنعتبر ان اسم الملف HAHA.txt ازاي امسح اللي فيه بدون ما انشا واحد جديد بنفس الاسم وشكرا Link to comment
KillerX Posted February 25, 2019 Author Share Posted February 25, 2019 up @Master_MTA Link to comment
Master_MTA Posted February 25, 2019 Share Posted February 25, 2019 1 hour ago, KillerX said: up @Master_MTA https://wiki.multitheftauto.com/wiki/FileOpen https://wiki.multitheftauto.com/wiki/FileRead https://wiki.multitheftauto.com/wiki/FileWrite Link to comment
KillerX Posted February 25, 2019 Author Share Posted February 25, 2019 21 minutes ago, Master_MTA said: https://wiki.multitheftauto.com/wiki/FileOpen https://wiki.multitheftauto.com/wiki/FileRead https://wiki.multitheftauto.com/wiki/FileWrite حاولت بس اللي اعرفوا ان fileWrite يضيف ما يحذف Link to comment
Master_MTA Posted February 25, 2019 Share Posted February 25, 2019 10 minutes ago, KillerX said: يضيف ما يحذف https://wiki.multitheftauto.com/wiki/FileSetPos +_+ +fileWrite Link to comment
KillerX Posted February 25, 2019 Author Share Posted February 25, 2019 14 minutes ago, Master_MTA said: https://wiki.multitheftauto.com/wiki/FileSetPos +_+ +fileWrite 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 مشششششششششششششششششششششششششششكور يا قمر 1 Link to comment
Master_MTA Posted February 25, 2019 Share Posted February 25, 2019 12 minutes ago, KillerX said: مشششششششششششششششششششششششششششكور العفو يا عسل بالتوفيق 1 Link to comment
KillerX Posted February 25, 2019 Author Share Posted February 25, 2019 6 hours ago, Master_MTA said: العفو يا عسل بالتوفيق معلش طلب اخير كودي بيمسح الملف بس بيكتب فية مسافات ودا هياثر كتير في فكرتي اللي عايز اسويها في سكريبت تاني فممكن تقولي ازاي امسحوا بدون مسافات ؟؟؟ وشكرا يا قمر Link to comment
Master_MTA Posted February 26, 2019 Share Posted February 26, 2019 17 hours ago, KillerX said: وشكرا fileWrite( file , string.rep( " " , fileGetSize( file ) ) ) هل جربت تخلي بدل " " تخليه كذا؟ "" Link to comment
KillerX Posted February 26, 2019 Author Share Posted February 26, 2019 2 hours ago, Master_MTA said: fileWrite( file , string.rep( " " , fileGetSize( file ) ) ) هل جربت تخلي بدل " " تخليه كذا؟ "" يب جربت بس النتيجة ما يتغير شئ لانوا بيكرر سلسلة نصية فاضية Link to comment
Abdul KariM Posted February 26, 2019 Share Posted February 26, 2019 (edited) 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 February 26, 2019 by Abdul KariM 1 Link to comment
KillerX Posted February 26, 2019 Author Share Posted February 26, 2019 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" ) طلع العيب مني معقد امها وعادي يكون في مسافات + مشكور جدا طريقتك عجبتني 1 Link to comment
Abdul KariM Posted February 26, 2019 Share Posted February 26, 2019 تنحل المشكلة \r حياك , بس تضيف 2 1 Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now