Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. file name change to unix file with escaping
Forum Updated to NodeBB v4.3 + New Features

file name change to unix file with escaping

Scheduled Pinned Locked Moved Unsolved General and Desktop
29 Posts 9 Posters 4.2k Views 4 Watching
  • 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.
  • JonBJ JonB

    @J-Hilk
    I admit I don't know about umlauts.

    Under Windows, if you don't want to deal with spaces in path/file names, try accepting the default save file name from a new Word document, or try Ctrl+C, Ctrl+V from File Explorer, or try right-click New>Folder, or try executing anything from standard C:\Program Files\... from the command line, or use the standard Save File dialog to get a name from the user, or a million other cases.

    So you're going to say all of these are bad practice under Windows. I don't think we'll get anywhere, because we must have different definitions of "bad practice".

    jsulmJ Offline
    jsulmJ Offline
    jsulm
    Lifetime Qt Champion
    wrote on last edited by
    #11

    @JonB said in file name change to unix file with escaping:

    So you're going to say all of these are bad practice under Windows

    Using existing system directories with spaces is not bad practice. But using own directories/file names with spaces (or umlauts) is at least questionable. I try to avoid this.

    https://forum.qt.io/topic/113070/qt-code-of-conduct

    J.HilkJ 1 Reply Last reply
    1
    • R Offline
      R Offline
      RahibeMeryem
      wrote on last edited by
      #12

      @JonB

      yes there is directory and file as below.

      Linux path : file = "/Users/xxx/test dene biri/adf.jpg"
      
      

      QFile("/Users/xxx/test dene biri/adf.jpg") . gives error under ubuntu 19.

      I will double check tonight

      JonBJ SGaistS KroMignonK 3 Replies Last reply
      0
      • R RahibeMeryem

        @JonB

        yes there is directory and file as below.

        Linux path : file = "/Users/xxx/test dene biri/adf.jpg"
        
        

        QFile("/Users/xxx/test dene biri/adf.jpg") . gives error under ubuntu 19.

        I will double check tonight

        JonBJ Offline
        JonBJ Offline
        JonB
        wrote on last edited by JonB
        #13

        @RahibeMeryem
        My Ubuntu 19.04, I have to use Python+PySide2 instead of C++ but no matter:

        (py37) jon@ubuntu-19:~$ mkdir "test space"
        (py37) jon@ubuntu-19:~$ echo hello > "test space/file"
        (py37) jon@ubuntu-19:~$ python3
        Python 3.7.3 | packaged by conda-forge | (default, Jul  1 2019, 21:52:21) 
        [GCC 7.3.0] :: Anaconda, Inc. on linux
        Type "help", "copyright", "credits" or "license" for more information.
        >>> from PySide2.QtCore import QFile
        >>> print(QFile("test space/file").exists())
        True
        >>> print(QFile("test space/file").size())
        6
        >>> print(hex(int(QFile("test space/file").permissions())))
        0x6644
        >>> 
        
        1 Reply Last reply
        0
        • R RahibeMeryem

          @JonB

          yes there is directory and file as below.

          Linux path : file = "/Users/xxx/test dene biri/adf.jpg"
          
          

          QFile("/Users/xxx/test dene biri/adf.jpg") . gives error under ubuntu 19.

          I will double check tonight

          SGaistS Offline
          SGaistS Offline
          SGaist
          Lifetime Qt Champion
          wrote on last edited by SGaist
          #14

          @RahibeMeryem said in file name change to unix file with escaping:

          @JonB

          yes there is directory and file as below.

          Linux path : file = "/Users/xxx/test dene biri/adf.jpg"
          
          

          QFile("/Users/xxx/test dene biri/adf.jpg") . gives error under ubuntu 19.

          I will double check tonight

          Hi,

          Maybe because there's no /Users folder on Linux.

          The home folder for users under Linux is /home.

          Interested in AI ? www.idiap.ch
          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          3
          • R RahibeMeryem

            @JonB

            yes there is directory and file as below.

            Linux path : file = "/Users/xxx/test dene biri/adf.jpg"
            
            

            QFile("/Users/xxx/test dene biri/adf.jpg") . gives error under ubuntu 19.

            I will double check tonight

            KroMignonK Offline
            KroMignonK Offline
            KroMignon
            wrote on last edited by
            #15

            @RahibeMeryem said in file name change to unix file with escaping:

            yes there is directory and file as below.
            Linux path : file = "/Users/xxx/test dene biri/adf.jpg"

            QFile("/Users/xxx/test dene biri/adf.jpg") . gives error under ubuntu 19.

            On Linux/Unix systems, if you want to access to an user directory, it is preferable to use '~', for example for user foo: QFile("~foo/test dene biri/adf.jpg")

            I don't know if on macOS this is also working.

            It is an old maxim of mine that when you have excluded the impossible, whatever remains, however improbable, must be the truth. (Sherlock Holmes)

            1 Reply Last reply
            0
            • SGaistS Offline
              SGaistS Offline
              SGaist
              Lifetime Qt Champion
              wrote on last edited by
              #16

              @KroMignon that's a shell shortcut so it may or may not work depending on what you are doing.
              Using QStandardPaths would be better.

              Interested in AI ? www.idiap.ch
              Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

              Kent-DorfmanK 1 Reply Last reply
              6
              • JonBJ Offline
                JonBJ Offline
                JonB
                wrote on last edited by JonB
                #17

                But I have asked and the OP confirmed:

                yes there is directory and file as below.

                Linux path : file = "/Users/xxx/test dene biri/adf.jpg"

                So he must have checked that on his Linux he has a /Users/..., for whatever reason. He says the issue is to do with the spaces.

                KroMignonK 1 Reply Last reply
                0
                • JonBJ JonB

                  But I have asked and the OP confirmed:

                  yes there is directory and file as below.

                  Linux path : file = "/Users/xxx/test dene biri/adf.jpg"

                  So he must have checked that on his Linux he has a /Users/..., for whatever reason. He says the issue is to do with the spaces.

                  KroMignonK Offline
                  KroMignonK Offline
                  KroMignon
                  wrote on last edited by KroMignon
                  #18

                  @JonB said in file name change to unix file with escaping:

                  for whatever reason

                  @RahibeMeryem Did you check if the application has read/excecute rights for each sub-directory?

                  It is an old maxim of mine that when you have excluded the impossible, whatever remains, however improbable, must be the truth. (Sherlock Holmes)

                  JonBJ 1 Reply Last reply
                  0
                  • KroMignonK KroMignon

                    @JonB said in file name change to unix file with escaping:

                    for whatever reason

                    @RahibeMeryem Did you check if the application has read/excecute rights for each sub-directory?

                    JonBJ Offline
                    JonBJ Offline
                    JonB
                    wrote on last edited by
                    #19

                    @KroMignon Why are you directing this question to me?

                    1 Reply Last reply
                    0
                    • R RahibeMeryem

                      Hi,

                      I developed my app in Mac and when I transfer to the linux there is qfile file read problem due to some of the file and dirs has " " spaces.

                      I try to QString.replace(" " , "\" ) and looks replaced .

                      but even I saw the file name escaped with \ in linux , it says cant find the name.

                      is there any best practices to change file name to readable format in linux ?

                      JonBJ Offline
                      JonBJ Offline
                      JonB
                      wrote on last edited by JonB
                      #20

                      @RahibeMeryem
                      OK, this is bugging me :) So here is a list of steps which will resolve where we are on this issue.

                      If you know how to open a terminal/shell/command-prompt-window on Ubuntu:

                      1. Open a terminal/shell/command-prompt-window. (Do not type sudo anything, if you might be tempted to.)
                      2. Type ls -b /Users
                      3. Then ls -b /Users/xxx, with whatever for the xxx
                      4. Then ls -b /Users/xxx/test dene biri
                      5. Finallyls -b /Users/xxx/test dene biri/adf.jpg
                      6. If you really get as far as here without a "No such file or directory"-type error, type ls -l /Users/xxx/test dene biri/adf.jpg
                      7. Copy the output you get as you go along and paste it here.

                      If you do not know how to open a terminal:

                      1. Open the "File Explorer" from its icon on the desktop
                      2. Make it browse to the top-level root directory, named /.
                      3. Go downwards into directories/folders for your path, i.e. Users, then whatever for the xxx, then test dene biri.
                      4. Show us a screenshot (screenshot program, https://help.ubuntu.com/stable/ubuntu-help/screen-shot-record.html) of where you get to.

                      P.S.
                      I just noticed there is some confusion of whether the path has test dene bir or test dene biri (the extra i at the end) in some of these posts. I may have introduced that inadvertently. Obviously ensure both Mac & Linux code use whichever spelling is correct for you.

                      1 Reply Last reply
                      1
                      • R Offline
                        R Offline
                        RahibeMeryem
                        wrote on last edited by
                        #21

                        @JonB @SGaist

                        I found the STUPiD problem or a bug:

                        one of my folder path include 'ü' . utf8 character with spaces.

                        the 'ü' is different between mac os x and linux . in the linux ls -l look %100 identical but its not.

                        so I create same folder name with linux 'ü' its working now.

                        suprise.

                        JonBJ 1 Reply Last reply
                        0
                        • R RahibeMeryem

                          @JonB @SGaist

                          I found the STUPiD problem or a bug:

                          one of my folder path include 'ü' . utf8 character with spaces.

                          the 'ü' is different between mac os x and linux . in the linux ls -l look %100 identical but its not.

                          so I create same folder name with linux 'ü' its working now.

                          suprise.

                          JonBJ Offline
                          JonBJ Offline
                          JonB
                          wrote on last edited by JonB
                          #22

                          @RahibeMeryem

                          in the linux ls -l look %100 identical but its not.

                          That is precisely why you will see I suggested you use ls -b in all my examples, which I guess is how you spotted it....

                          1 Reply Last reply
                          1
                          • jsulmJ jsulm

                            @JonB said in file name change to unix file with escaping:

                            So you're going to say all of these are bad practice under Windows

                            Using existing system directories with spaces is not bad practice. But using own directories/file names with spaces (or umlauts) is at least questionable. I try to avoid this.

                            J.HilkJ Offline
                            J.HilkJ Offline
                            J.Hilk
                            Moderators
                            wrote on last edited by
                            #23

                            @RahibeMeryem said in file name change to unix file with escaping:

                            @JonB @SGaist

                            I found the STUPiD problem or a bug:

                            one of my folder path include 'ü' . utf8 character with spaces.

                            the 'ü' is different between mac os x and linux . in the linux ls -l look %100 identical but its not.

                            so I create same folder name with linux 'ü' its working now.

                            suprise.

                            Ah, we went full circle, let me quote:

                            @jsulm said in file name change to unix file with escaping:

                            @JonB said in file name change to unix file with escaping:

                            So you're going to say all of these are bad practice under Windows

                            Using existing system directories with spaces is not bad practice. But using own directories/file names with spaces (or umlauts) is at least questionable. I try to avoid this.


                            Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


                            Q: What's that?
                            A: It's blue light.
                            Q: What does it do?
                            A: It turns blue.

                            JonBJ 1 Reply Last reply
                            1
                            • J.HilkJ J.Hilk

                              @RahibeMeryem said in file name change to unix file with escaping:

                              @JonB @SGaist

                              I found the STUPiD problem or a bug:

                              one of my folder path include 'ü' . utf8 character with spaces.

                              the 'ü' is different between mac os x and linux . in the linux ls -l look %100 identical but its not.

                              so I create same folder name with linux 'ü' its working now.

                              suprise.

                              Ah, we went full circle, let me quote:

                              @jsulm said in file name change to unix file with escaping:

                              @JonB said in file name change to unix file with escaping:

                              So you're going to say all of these are bad practice under Windows

                              Using existing system directories with spaces is not bad practice. But using own directories/file names with spaces (or umlauts) is at least questionable. I try to avoid this.

                              JonBJ Offline
                              JonBJ Offline
                              JonB
                              wrote on last edited by JonB
                              #24

                              @J-Hilk
                              For all we know he has no choice about directory spelling. E.g. if his user name contains an umlaut he types in, I would guess Linux creates his home directory based on this. Perhaps because this is "bad practice" we'd better tell Linux to change its ways.... Or, perhaps the user should change his real name to accommodate...

                              J.HilkJ 1 Reply Last reply
                              0
                              • JonBJ JonB

                                @J-Hilk
                                For all we know he has no choice about directory spelling. E.g. if his user name contains an umlaut he types in, I would guess Linux creates his home directory based on this. Perhaps because this is "bad practice" we'd better tell Linux to change its ways.... Or, perhaps the user should change his real name to accommodate...

                                J.HilkJ Offline
                                J.HilkJ Offline
                                J.Hilk
                                Moderators
                                wrote on last edited by
                                #25

                                @JonB said in file name change to unix file with escaping:

                                Or, perhaps the user should change his real name to accommodate...

                                yep, that's what I did at my old work place,
                                ü -> ue


                                Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


                                Q: What's that?
                                A: It's blue light.
                                Q: What does it do?
                                A: It turns blue.

                                artwawA 1 Reply Last reply
                                0
                                • J.HilkJ J.Hilk

                                  @JonB said in file name change to unix file with escaping:

                                  Or, perhaps the user should change his real name to accommodate...

                                  yep, that's what I did at my old work place,
                                  ü -> ue

                                  artwawA Offline
                                  artwawA Offline
                                  artwaw
                                  wrote on last edited by
                                  #26

                                  @J-Hilk a bit OT but touches the good/bad practice part: in my workplace we have around 20 nationalities using 4 or 5 different alphabets. All the names and surnames in the sysaccounts/paths are transliterated to English exactly to avoid problems like that.

                                  For more information please re-read.

                                  Kind Regards,
                                  Artur

                                  1 Reply Last reply
                                  4
                                  • M Offline
                                    M Offline
                                    mpergand
                                    wrote on last edited by mpergand
                                    #27

                                    This vicious bug is due to the fact that Mac file system uses a special variant of unicode called decomposed form (NFD)
                                    see https://developer.apple.com/library/archive/qa/qa1235/_index.html

                                    However, you may need to convert to precomposed Unicode when you interact with other platforms.
                                    For example, the following are all valid reasons why you might want to convert to precomposed Unicode:
                                    -If you implement a network protocol which is defined to use precomposed Unicode.
                                    -When creating a cross-platform file (or volume) whose specification dictates precomposed Unicode.
                                    -If you incorporate a large body of cross-platform code into your application,
                                    where that code is expecting precomposed Unicode.

                                    For the same reason, if you're using C/C++ libraries that deal with file paths, it's advisable to use the following method for converting QString to *char:
                                    [filePath.toNSString() fileSystemRepresentation];

                                    1 Reply Last reply
                                    2
                                    • SGaistS SGaist

                                      @KroMignon that's a shell shortcut so it may or may not work depending on what you are doing.
                                      Using QStandardPaths would be better.

                                      Kent-DorfmanK Offline
                                      Kent-DorfmanK Offline
                                      Kent-Dorfman
                                      wrote on last edited by
                                      #28

                                      @SGaist

                                      @SGaist said in file name change to unix file with escaping:

                                      @KroMignon that's a shell shortcut so it may or may not work depending on what you are doing.
                                      Using QStandardPaths would be better.

                                      Yes, tilde is a shell shortcut, so should only ever be used in immediate mode on the command line in shells that recognize it. Use anywhere else can and probably will fail to be interpreted properly.

                                      JonBJ 1 Reply Last reply
                                      1
                                      • Kent-DorfmanK Kent-Dorfman

                                        @SGaist

                                        @SGaist said in file name change to unix file with escaping:

                                        @KroMignon that's a shell shortcut so it may or may not work depending on what you are doing.
                                        Using QStandardPaths would be better.

                                        Yes, tilde is a shell shortcut, so should only ever be used in immediate mode on the command line in shells that recognize it. Use anywhere else can and probably will fail to be interpreted properly.

                                        JonBJ Offline
                                        JonBJ Offline
                                        JonB
                                        wrote on last edited by JonB
                                        #29

                                        @Kent-Dorfman
                                        Hence @SGaist's comment that you would hardly ever want to construct a QFile("~...") anything. The only times would be for path-splitting function calls (even then be careful, e.g. Qt will think it's a relative path when in effect it's actually absolute), or to convert directly to string for passing to an OS command. Any other operations like trying to open it will not address the intended file (e.g. https://stackoverflow.com/questions/2816499/why-cant-qfile-read-from-the-directory).

                                        1 Reply Last reply
                                        0

                                        • Login

                                        • Login or register to search.
                                        • First post
                                          Last post
                                        0
                                        • Categories
                                        • Recent
                                        • Tags
                                        • Popular
                                        • Users
                                        • Groups
                                        • Search
                                        • Get Qt Extensions
                                        • Unsolved