VirtualBox

Changeset 75095 in vbox


Ignore:
Timestamp:
Oct 26, 2018 12:35:32 PM (6 years ago)
Author:
vboxsync
Message:

Guest Control/Main: Better check for existing directories in GuestSessionTaskCopyTo().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp

    r73040 r75095  
    18101810                    {
    18111811                        rc = directoryCreate(strDstAbs.c_str(), DirectoryCreateFlag_None, fDirMode, fFollowSymlinks);
    1812                         if (   rc == VERR_ALREADY_EXISTS
    1813                             && !fCopyIntoExisting)
     1812                        if (RT_FAILURE(rc))
    18141813                        {
    1815                             setProgressErrorMsg(VBOX_E_IPRT_ERROR,
    1816                                                 Utf8StrFmt(GuestSession::tr("Destination directory \"%s\" already exists"),
    1817                                                            strDstAbs.c_str()));
    1818                             break;
     1814                            if (rc == VERR_ALREADY_EXISTS)
     1815                            {
     1816                                if (!fCopyIntoExisting)
     1817                                {
     1818                                    setProgressErrorMsg(VBOX_E_IPRT_ERROR,
     1819                                                        Utf8StrFmt(GuestSession::tr("Destination directory '%s' already exists"),
     1820                                                                   strDstAbs.c_str()));
     1821                                }
     1822                                else /* Copy into destination directory. */
     1823                                    rc = VINF_SUCCESS;
     1824                            }
    18191825                        }
    18201826                    }
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette