1:45 PM 11/12/2025 ���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC ‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!
Warning: Undefined variable $authorization in C:\xampp\htdocs\demo\fi.php on line 57

Warning: Undefined variable $translation in C:\xampp\htdocs\demo\fi.php on line 118

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\demo\fi.php on line 119

Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in C:\xampp\htdocs\demo\fi.php on line 120

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 247

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 248

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 249

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 250

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 251

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 252
""" Tests for pathlib.types._WritablePath """ import io import os import sys import unittest from .support import is_pypi from .support.local_path import WritableLocalPath, LocalPathGround from .support.zip_path import WritableZipPath, ZipPathGround if is_pypi: from pathlib_abc import _WritablePath from pathlib_abc._os import magic_open else: from pathlib.types import _WritablePath from pathlib._os import magic_open class WriteTestBase: def setUp(self): self.root = self.ground.setup() def tearDown(self): self.ground.teardown(self.root) def test_is_writable(self): self.assertIsInstance(self.root, _WritablePath) def test_open_w(self): p = self.root / 'fileA' with magic_open(p, 'w', encoding='utf-8') as f: self.assertIsInstance(f, io.TextIOBase) f.write('this is file A\n') self.assertEqual(self.ground.readtext(p), 'this is file A\n') @unittest.skipIf( not getattr(sys.flags, 'warn_default_encoding', 0), "Requires warn_default_encoding", ) def test_open_w_encoding_warning(self): p = self.root / 'fileA' with self.assertWarns(EncodingWarning) as wc: with magic_open(p, 'w'): pass self.assertEqual(wc.filename, __file__) def test_open_wb(self): p = self.root / 'fileA' with magic_open(p, 'wb') as f: #self.assertIsInstance(f, io.BufferedWriter) f.write(b'this is file A\n') self.assertEqual(self.ground.readbytes(p), b'this is file A\n') self.assertRaises(ValueError, magic_open, p, 'wb', encoding='utf8') self.assertRaises(ValueError, magic_open, p, 'wb', errors='strict') self.assertRaises(ValueError, magic_open, p, 'wb', newline='') def test_write_bytes(self): p = self.root / 'fileA' data = b'abcdefg' self.assertEqual(len(data), p.write_bytes(data)) self.assertEqual(self.ground.readbytes(p), data) # Check that trying to write str does not truncate the file. self.assertRaises(TypeError, p.write_bytes, 'somestr') self.assertEqual(self.ground.readbytes(p), data) def test_write_text(self): p = self.root / 'fileA' data = 'äbcdefg' self.assertEqual(len(data), p.write_text(data, encoding='latin-1')) self.assertEqual(self.ground.readbytes(p), b'\xe4bcdefg') # Check that trying to write bytes does not truncate the file. self.assertRaises(TypeError, p.write_text, b'somebytes', encoding='utf-8') self.assertEqual(self.ground.readbytes(p), b'\xe4bcdefg') @unittest.skipIf( not getattr(sys.flags, 'warn_default_encoding', 0), "Requires warn_default_encoding", ) def test_write_text_encoding_warning(self): p = self.root / 'fileA' with self.assertWarns(EncodingWarning) as wc: p.write_text('abcdefg') self.assertEqual(wc.filename, __file__) def test_write_text_with_newlines(self): # Check that `\n` character change nothing p = self.root / 'fileA' p.write_text('abcde\r\nfghlk\n\rmnopq', encoding='utf-8', newline='\n') self.assertEqual(self.ground.readbytes(p), b'abcde\r\nfghlk\n\rmnopq') # Check that `\r` character replaces `\n` p = self.root / 'fileB' p.write_text('abcde\r\nfghlk\n\rmnopq', encoding='utf-8', newline='\r') self.assertEqual(self.ground.readbytes(p), b'abcde\r\rfghlk\r\rmnopq') # Check that `\r\n` character replaces `\n` p = self.root / 'fileC' p.write_text('abcde\r\nfghlk\n\rmnopq', encoding='utf-8', newline='\r\n') self.assertEqual(self.ground.readbytes(p), b'abcde\r\r\nfghlk\r\n\rmnopq') # Check that no argument passed will change `\n` to `os.linesep` os_linesep_byte = bytes(os.linesep, encoding='ascii') p = self.root / 'fileD' p.write_text('abcde\nfghlk\n\rmnopq', encoding='utf-8') self.assertEqual(self.ground.readbytes(p), b'abcde' + os_linesep_byte + b'fghlk' + os_linesep_byte + b'\rmnopq') def test_mkdir(self): p = self.root / 'newdirA' self.assertFalse(self.ground.isdir(p)) p.mkdir() self.assertTrue(self.ground.isdir(p)) def test_symlink_to(self): if not self.ground.can_symlink: self.skipTest('needs symlinks') link = self.root.joinpath('linkA') link.symlink_to('fileA') self.assertTrue(self.ground.islink(link)) self.assertEqual(self.ground.readlink(link), 'fileA') class ZipPathWriteTest(WriteTestBase, unittest.TestCase): ground = ZipPathGround(WritableZipPath) class LocalPathWriteTest(WriteTestBase, unittest.TestCase): ground = LocalPathGround(WritableLocalPath) if not is_pypi: from pathlib import Path class PathWriteTest(WriteTestBase, unittest.TestCase): ground = LocalPathGround(Path) if __name__ == "__main__": unittest.main()