Bamboo.Prevalence.Implementation.NumberedFileBase.NextFileInfo C# (CSharp) Method

NextFileInfo() protected method

Formats a FileInfo with the current value of _nextNumber and increments it.
protected NextFileInfo ( string format ) : FileInfo
format string
return System.IO.FileInfo
		protected FileInfo NextFileInfo(string format)
		{
			return FormatFileInfo(format, _nextNumber++);
		}
	}