pull/44/merge
Jarkko Peltonen 8 years ago committed by GitHub
commit 47f6039bab

@ -1049,6 +1049,20 @@ namespace IEC61850
throw new IedConnectionException ("Deleting file " + fileName + " failed", error);
}
/// <summary>Delete file</summary>
/// <param name="fileName">The name of the file.</param>
/// <exception cref="IedConnectionException">This exception is thrown if there is a connection or service error</exception>
public void DeleteFile(string fileName)
{
int error;
IedConnection_deleteFile(connection, out error, fileName);
if (error != 0)
throw new IedConnectionException("Deleting file " + fileName + " failed", error);
}
/// <summary>Read the content of a file directory.</summary>
/// <param name="directoryName">The name of the directory.</param>
/// <exception cref="IedConnectionException">This exception is thrown if there is a connection or service error</exception>

Loading…
Cancel
Save