Issue
In Vertex AI workbench, User managed notebooks. I am unable to delete a folder that are not empty even if it contains an empty folder inside. A pop up will appear showing Delete Failed and directory /home/jupyter/...
is not empty
Solution
There's two solutions to this question that I found out.
Delete from the last file inside in the folder towards the parent folder, then you can delete it.
open terminal from the launcher by clicking on the + symbol and then
navigate to the home by entering this command cd $BASE/../..
then list the contents by ls
and then
rm -r directory_name
replace directory_name with folder or file you want to delete.
this way you can delete the folders or files.
Answered By - boeing777
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.