Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
FileTools[Unlock] - release a file lock
Calling Sequence
Unlock(file, opt1, opt2, ...)
Parameters
file
-
filename or the file descriptor of a locked file
opt1, opt2, ...
(optional) arguments
Description
The Unlock(file) command releases a file lock for file. With no optional arguments, the exclusive lock for the entire file is released.
The optional arguments passed to Unlock must match those given to Lock when the lock was acquired.
If opt1, opt2, ... is bytes=low..high, then the bytes in file position low to high in file are unlocked. If relative is also specified, then low and high are considered relative to the current file position. The bytes range must match a range given to a call to Lock.
The Unlock command does not return anything. If an error occurs, an exception is raised.
For more information about file locking, see the Lock help page.
Locks on a file are released when the file is closed. As all files are closed on exit from Maple, all file locks are released when Maple exits. It is possible that these file locks will not be removed immediately when Maple exits. Therefore, if you depend on files being immediately available after Maple exits, they must be explicitly unlocked.
On UNIX systems it is not necessary that the bytes range be the range of a Lock call. All the bytes in the specified range are unlocked, assuming they are of matching type.
Examples
See Also
FileTools, FileTools[IsLockable], FileTools[Text][Open], IO_errors, iostatus
Download Help Document