Nahid
Nahid

Reputation: 1

I've downloaded a file via git clone to my notebook on google colab, how do I determine that file's path now?

To be clear this file was NOT imported from Google Drive, instead it was downloaded directly.

Upvotes: 0

Views: 64

Answers (1)

Bob Smith
Bob Smith

Reputation: 38659

Use %pwd to show the current directory, %cd to switch directories, and !ls to list directories. (Or, use the file browser GUI on the left hand side.)

Here's an example: enter image description here

Upvotes: 1

Related Questions