omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    new file/project couldn't be created

    Pythonista
    3
    66
    19471
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • cvp
      cvp last edited by

      Trying to remove it gives

      PermissionError: [Errno 1] Operation not permitted: '(A Document Being Saved By Pythonista3 92)'
      
      1 Reply Last reply Reply Quote 0
      • cvp
        cvp last edited by

        Each file has a size of 96 bytes??????????

        1 Reply Last reply Reply Quote 0
        • pavlinb
          pavlinb last edited by

          Works.

          No more crashes with complex images.

          1 Reply Last reply Reply Quote 0
          • cvp
            cvp last edited by cvp

            Shame on me, each line is a folder, that's why it is 96 bytes and unremovable 😢 because not empty

            1 Reply Last reply Reply Quote 0
            • cvp
              cvp last edited by cvp

              The .mlmodelc are not permitted for removal...

              1 Reply Last reply Reply Quote 0
              • cvp
                cvp last edited by

                .mlmodelc is still a folder, one more time, shame on me...
                1GB of temp files...

                1 Reply Last reply Reply Quote 0
                • cvp
                  cvp last edited by cvp

                  In the text detection script, add

                  	print(c_model_url)
                  

                  Note the code d = '/private/var/mobile/Containers/Data/Application/C285FD04-6489-45E5-A6C5-D4A44D300BBC/tmp/'
                  Replace it in the little script here-under to clean /tmp folder

                  import os
                  
                  n = 0
                  s = 0
                  def loc_dirs(path):
                  		global n,s
                  		try:
                  			file_path = path
                  			os.chdir(file_path)
                  			filelist = os.listdir(file_path)
                  			for file in filelist:
                  				print(file)				
                  				f_full = file_path + file
                  				if os.path.isdir(f_full):
                  					loc_dirs(path+file+'/') # explore it
                  				else:	
                  
                  					loc_size = os.path.getsize(f_full)
                  					n = n + 1
                  					s = s + loc_size
                  					os.remove(f_full)
                  			os.rmdir(file_path)
                  		except Exception as e:
                  			print('exception: ',e)
                  		return
                  
                  
                  d = '/private/var/mobile/Containers/Data/Application/C285FD04-6489-45E5-A6C5-D4A44D300BBC/tmp/'
                  #loc_dirs(d)
                  print(n,s)
                  
                  1 Reply Last reply Reply Quote 0
                  • pavlinb
                    pavlinb last edited by

                    print(n,s)

                    3637 2027261814

                    cvp 1 Reply Last reply Reply Quote 0
                    • cvp
                      cvp @pavlinb last edited by

                      @pavlinb 20GB?

                      1 Reply Last reply Reply Quote 0
                      • pavlinb
                        pavlinb last edited by

                        May be 2GB.

                        cvp 1 Reply Last reply Reply Quote 0
                        • cvp
                          cvp @pavlinb last edited by

                          @pavlinb 2.027.261.814 = 2GB, Sorry for my old eyes 😢

                          1 Reply Last reply Reply Quote 0
                          • cvp
                            cvp last edited by

                            The most important is that we

                            • find the reason (too much .mlmodelc)
                            • change the code
                            • can clean the tmp
                            pavlinb 1 Reply Last reply Reply Quote 0
                            • pavlinb
                              pavlinb @cvp last edited by

                              @cvp Thanks to you.

                              1 Reply Last reply Reply Quote 0
                              • First post
                                Last post
                              Powered by NodeBB Forums | Contributors