मैं कैसे करूँ ऊपर बहुत बीमार है के रूप में आप अपने कोड दिखाने के लिए और कैसे एक MYSSQL DB के साथ इसका इस्तेमाल करने के लिए ...
DB में दस्तावेज़ तालिका -
int Id (PK), string Url, string Description, CreatedBy, TenancyId DateUploaded
उपर्युक्त कोड आईडी, प्राथमिक कुंजी होने के नाते, URL फ़ाइल का नाम (अंत में फ़ाइल प्रकार के साथ), दस्तावेज़ दृश्य पर ouput के लिए फ़ाइल विवरण, CreatedBy जो फ़ाइल अपलोड किया जा रहा है, किरायेदारी, तिथि, दिनांकित
दृश्य के अंदर आपको निश्चित रूप से परिभाषित करना होगा या यह सही ढंग से काम नहीं करेगा।
@using (Html.BeginForm("Upload", "Document", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
<div class="input-group">
<label for="file">Upload a document:</label>
<input type="file" name="file" id="file" />
</div>
}
उपरोक्त कोड आपको ब्राउज़ बटन देगा, फिर मेरी परियोजना के अंदर एक वर्ग है जिसका मूल रूप से IsValidImage है जो सिर्फ फाइलों की जांच करता है जो आपके निर्दिष्ट अधिकतम आकार के तहत है, अगर इसकी IMG फ़ाइल है, तो यह जाँचता है कि यह एक वर्ग बूल फ़ंक्शन में है। इसलिए अगर सच्चा रिटर्न सही है।
public static bool IsValidImage(HttpPostedFileBase file, double maxFileSize, ModelState ms )
{
// make sur the file isnt null.
if( file == null )
return false;
// the param I normally set maxFileSize is 10MB 10 * 1024 * 1024 = 10485760 bytes converted is 10mb
var max = maxFileSize * 1024 * 1024;
// check if the filesize is above our defined MAX size.
if( file.ContentLength > max )
return false;
try
{
// define our allowed image formats
var allowedFormats = new[] { ImageFormat.Jpeg, ImageFormat.Png, ImageFormat.Gif, ImageFormat.Bmp };
// Creates an Image from the specified data stream.
using (var img = Image.FromStream(file.InputStream))
{
// Return true if the image format is allowed
return allowedFormats.Contains(img.RawFormat);
}
}
catch( Exception ex )
{
ms.AddModelError( "", ex.Message );
}
return false;
}
नियंत्रक में तो:
if (!Code.Picture.IsValidUpload(model.File, 10, true))
{
return View(model);
}
// Set the file name up... Being random guid, and then todays time in ticks. Then add the file extension
// to the end of the file name
var dbPath = Guid.NewGuid().ToString() + DateTime.UtcNow.Ticks + Path.GetExtension(model.File.FileName);
// Combine the two paths together being the location on the server to store it
// then the actual file name and extension.
var path = Path.Combine(Server.MapPath("~/Uploads/Documents/"), dbPath);
// set variable as Parent directory I do this to make sure the path exists if not
// I will create the directory.
var directoryInfo = new FileInfo(path).Directory;
if (directoryInfo != null)
directoryInfo.Create();
// save the document in the combined path.
model.File.SaveAs(path);
// then add the data to the database
_db.Documents.Add(new Document
{
TenancyId = model.SelectedTenancy,
FileUrl = dbPath,
FileDescription = model.Description,
CreatedBy = loggedInAs,
CreatedDate = DateTime.UtcNow,
UpdatedDate = null,
CanTenantView = true
});
_db.SaveChanges();
model.Successfull = true;