Note: You are currently viewing documentation for Moodle 3.4. Up-to-date documentation for the latest stable version of Moodle is likely available here: File handling.

File handling: Difference between revisions

From MoodleDocs
m (mediaplayer tags)
Line 7: Line 7:
* Files are no longer just "uploaded to the course".  Files are connected to the particular bit of Moodle content that uses them. (For example, a file may belong to a file resource, a forum post or a wiki page). Access to these files is then controlled by the same rules as as that bit of Moodle, increasing security.
* Files are no longer just "uploaded to the course".  Files are connected to the particular bit of Moodle content that uses them. (For example, a file may belong to a file resource, a forum post or a wiki page). Access to these files is then controlled by the same rules as as that bit of Moodle, increasing security.


<mediaplayer>http://www.youtube.com/watch?v=2bUwx675Pqo</mediaplayer>
== Typical Moodle 2.0 workflow ==
== Typical Moodle 2.0 workflow ==
Edit a text or activity. Use the filepicker to easily select the file from any local or remote repository. The file is then copied to Moodle and stored securely with the text or activity.  
Edit a text or activity. Use the filepicker to easily select the file from any local or remote repository. The file is then copied to Moodle and stored securely with the text or activity.  
Line 22: Line 24:
==See also==
==See also==


* [http://www.youtube.com/watch?v=2bUwx675Pqo File handling in Moodle 2.0 video]
* [[Course files]]
* [[Course files]]
* [[Development:File API]]
* [[Development:File API]]

Revision as of 19:46, 7 December 2010

Template:Moodle 2.0The way files are handled in Moodle has been changed significantly in Moodle 2.0.

  • Previously, if a file was used in different courses, it was duplicated. In Moodle 2.0, files are stored only once, saving disk space.
  • Full support for Unicode file names on all operating systems.
  • Metadata about each file (author, date, license, etc) and what the file is used for are stored in the database.
  • Files are no longer just "uploaded to the course". Files are connected to the particular bit of Moodle content that uses them. (For example, a file may belong to a file resource, a forum post or a wiki page). Access to these files is then controlled by the same rules as as that bit of Moodle, increasing security.


<mediaplayer>http://www.youtube.com/watch?v=2bUwx675Pqo</mediaplayer>

Typical Moodle 2.0 workflow

Edit a text or activity. Use the filepicker to easily select the file from any local or remote repository. The file is then copied to Moodle and stored securely with the text or activity.

Or Edit a text or url resource. Use the filepicker to easily select the file from any local or remote repository and select "link". The file URL is then embedded into the text and when viewed, the media comes directly from the open repository.

There are 4 areas to select files from:

It is possible to create a folder structure to store the files at the time files are retrieved.

See also