The creation date of a file or similar object. Use this tag for questions regarding when a file was created.
Questions tagged [datecreated]
52 questions
0
votes
1 answer
rails add created_at for the column value
I am trying to add created at for a value in a column
for example if I added a new invoice it will show me the date that I add the invoice not the date I add the case
<%= @case.invoice.created_at %>
This gives me null
in my database
class…

nourza
- 2,215
- 2
- 16
- 42
0
votes
1 answer
Is it possible to retroactively add "createdAt" key in each document of a mongoDB collection
I only recently thought it was a good idea to add createdAt as a default field in our User collection in mongoDB. Unfortunately, for all users that have signed up previously, this createdAt field is missing.
I feel like I am probably out of luck,…

Canovice
- 9,012
- 22
- 93
- 211
0
votes
1 answer
List file paths in a range of date created
I am trying to return a list of filepaths that are within a range of dates created. I am relatively new to Python and almost exclusively use it within ArcMap, so I'm a little confused. I also don't have access to some of the modules that look like…

ElizaC
- 1
- 1
0
votes
1 answer
Convert Date type
Folks, Im using this code to extract twitter data, I want to export the created_at as Day, Month and Year,without the hour infos, but I getting this Fri Jul 02 01:07:43 +0000 2021 and I want to get this 02/06/2021
from TwitterSearch import…

César Castor
- 11
- 2
0
votes
1 answer
How to fix - createdAt.getMinutes - Missing Zero
I encountered an unexpected issue with "${calculate.createdAt.getMinutes()}" It does not show the 0... It should be "13:06" but it shows only 13:6 . How to fix the missing 0? Thanks for advice.
0
votes
0 answers
Rails DateTime format
I have two different applications in rails 5.
I can't understand why in one of them (newest one) when I create a record the value of created_at is "2019-11-25 14: 08: 04.114384"
While in old the value of created_at is "25/11/2019…

F C Torres
- 41
- 5
0
votes
1 answer
Fild all xls files in subdirectories and move them to a folder based on file creation date
I have a folder that contains subfolders each with many excel spreadsheet. I am trying to get powershell to search through the subdirectories then move all the xls file with the same creation date into a new folder of that creation date. I am close…

Lord Beerus
- 69
- 1
- 1
- 5
0
votes
1 answer
How can i view the Created Date and the Owner of the Field in Azure DevOps
I am working on Azure DevOps and I know little about the product. I want to view the field history when it is created and by whom it is created and last modified.
I have gone through a couple of things in docs but it didn't help me.
Research up…

Malik
- 121
- 1
- 1
- 17
0
votes
0 answers
How to Create a new database in java eclipse
I'm currently learning Java and I want to create a database named Login that has two columns: one is named Username and the other is named Password.
import java.sql.*;
import java.util.*;
import javax.swing.JOptionPane;
public class…

Gerson areche
- 1
- 1
- 2
0
votes
0 answers
Track the created on and updated on data of features in geoserver layers
In arcgis there is a capability of tracking the created and updated date of features in the layers.
Is it possible to handle the same thing from geoserver layers by any settings and / or plugins.

Naveen Kumar H S
- 1,304
- 16
- 30
0
votes
1 answer
Get file's last modification date with Logstash
Is there a way for Logstash to get the date at which a file has been last modified?
In Linux, this would correspond to the date -r command.

halpsb
- 1,106
- 2
- 18
- 28
0
votes
1 answer
how to find account that expire 90 days from there date created
I am trying to find all temp accounts in AD that expire 90 days after the account was created. Here is what I have so far. I am not sure how to calculate that. I am not receiving any output.
$expireDate = (Get-ADUser -filter * -Properties…

user2402045
- 71
- 1
- 3
- 13
0
votes
2 answers
Issue with DateCreated
I have a table dbo.participation:
ID INT NOT NULL IDENTITY(1,1) PRIMARY KEY CLUSTERED,
User VARCHAR(MAX) NOT NULL,
ParticipationLevel TINYINT NOT NULL,
Selector VARCHAR(MAX) NOT NULL,
DateCreated DATETIME NOT NULL
I created the code below…

Will
- 59
- 8
0
votes
2 answers
How can I conditionally prevent a column from being updated in SQLite?
I have a table with CREATED and MODIFIED columns. I only want to insert the CREATED value once and have it be thereafter immutable. I know how to do this in a tedious way (write a "DoesRecordExist()" method and then alter the query and number of…

B. Clay Shannon-B. Crow Raven
- 8,547
- 144
- 472
- 862
0
votes
2 answers
Sitecore sorting by created date issue
I am having trouble figuring out how I can sort a list of items in descending order according to their created date (I know Sitecore allows for sorting items in ascending order by their created date). I'm still pretty new with Sitecore, so I'm not…

Dejsa Cocan
- 1,539
- 3
- 19
- 56